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", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"type": "chrome", "type": "mix_task",
"request": "launch", "request": "launch",
"name": "Launch Chrome", "name": "phx.server",
"url": "http://localhost:3000", "task": "phx.server",
"webRoot": "${workspaceFolder}/frontend/src", "taskArgs": [],
"runtimeExecutable": "/usr/bin/chromium-browser" "projectDir": "${workspaceRoot}/backend",
} "env": {
"SKIP_CRAWL": "1"
}
},
] ]
} }