protevus/.vscode/launch.json

22 lines
444 B
JSON
Raw Permalink Normal View History

2016-12-21 19:06:09 +00:00
{
2018-12-31 17:27:04 +00:00
"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",
2019-04-18 16:04:54 +00:00
"program": "${workspaceRoot}/bin/prod.dart",
"env": {
"ANGEL_ENV": "production"
}
2018-12-31 17:27:04 +00:00
}
]
}