add debug config

This commit is contained in:
Tao Bojlén 2020-10-11 11:29:36 +01:00
parent e1d48e70c4
commit 5f8bd7f891
No known key found for this signature in database
GPG Key ID: C6EC7AAB905F9E6F
1 changed files with 10 additions and 7 deletions

17
.vscode/launch.json vendored
View File

@ -5,12 +5,15 @@
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"type": "mix_task",
"request": "launch",
"name": "Launch Chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/frontend/src",
"runtimeExecutable": "/usr/bin/chromium-browser"
}
"name": "phx.server",
"task": "phx.server",
"taskArgs": [],
"projectDir": "${workspaceRoot}/backend",
"env": {
"SKIP_CRAWL": "1"
}
},
]
}
}