Files
python/.vscode/launch.json

15 lines
477 B
JSON
Raw Normal View History

2019-04-16 18:19:04 -07:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
2019-04-19 13:47:02 -07:00
"name": "Launch Server",
2019-04-16 18:19:04 -07:00
"type": "python",
"request": "launch",
2019-04-19 13:47:02 -07:00
"program": "${workspaceFolder}/server.py",
2019-04-16 18:19:04 -07:00
"console": "integratedTerminal"
}
]
}