index.community/.vscode/launch.json

19 lines
487 B
JSON
Raw Normal View History

2019-07-19 18:19:53 +00:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
2020-10-11 10:29:36 +00:00
"type": "mix_task",
2019-07-19 18:19:53 +00:00
"request": "launch",
2020-10-11 10:29:36 +00:00
"name": "phx.server",
"task": "phx.server",
"taskArgs": [],
"projectDir": "${workspaceRoot}/backend",
"env": {
"SKIP_CRAWL": "1"
}
},
2019-07-19 18:19:53 +00:00
]
2020-10-11 10:29:36 +00:00
}