protevus/.vscode/launch.json
2019-04-18 12:04:54 -04:00

21 lines
444 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Development Server",
"type": "dart",
"request": "launch",
"program": "${workspaceRoot}/bin/dev.dart",
"vmAdditionalArgs": ["--observe"]
},
{
"name": "Production Server",
"type": "dart",
"request": "launch",
"program": "${workspaceRoot}/bin/prod.dart",
"env": {
"ANGEL_ENV": "production"
}
}
]
}