ANGEL_ENV -> production in launch.json

This commit is contained in:
Tobe O 2019-04-18 12:04:54 -04:00
parent 30c2add0f3
commit 14da50550e

5
.vscode/launch.json vendored
View file

@ -12,7 +12,10 @@
"name": "Production Server",
"type": "dart",
"request": "launch",
"program": "${workspaceRoot}/bin/prod.dart"
"program": "${workspaceRoot}/bin/prod.dart",
"env": {
"ANGEL_ENV": "production"
}
}
]
}