Updated VSCode as well

This commit is contained in:
thosakwe 2017-06-10 11:35:36 -04:00
parent c1b50e4584
commit e78ba65b10
2 changed files with 11 additions and 8 deletions

View file

@ -1,5 +1,5 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Multithreaded Server (PRODUCTION)" type="DartCommandLineRunConfigurationType" factoryName="Dart Command Line Application" singleton="true">
<configuration default="false" name="Multi-Threaded Server (PRODUCTION)" type="DartCommandLineRunConfigurationType" factoryName="Dart Command Line Application" singleton="true">
<option name="checkedMode" value="false" />
<option name="envs">
<entry key="ANGEL_ENV" value="production" />

17
.vscode/launch.json vendored
View file

@ -5,19 +5,22 @@
"name": "Start Server",
"type": "dart-cli",
"request": "launch",
"cwd": "${workspaceRoot}",
"debugSettings": "${command:debugSettings}",
"program": "${workspaceRoot}/bin/server.dart",
"args": []
"checkedMode": true
},
{
"name": "Start Multiserver",
"name": "Multi-Threaded Server",
"type": "dart-cli",
"request": "launch",
"program": "${workspaceRoot}/bin/scaled_server.dart",
"checkedMode": true
},
{
"name": "Load-Balanced Server",
"type": "dart-cli",
"request": "launch",
"cwd": "${workspaceRoot}",
"debugSettings": "${command:debugSettings}",
"program": "${workspaceRoot}/bin/multi_server.dart",
"args": []
"checkedMode": true
}
]
}