Add vscode debug launch configuration

This commit is contained in:
Matthew Stratford 2020-10-28 22:07:13 +00:00
parent eefa9f4a5d
commit 867e057811
No known key found for this signature in database
GPG key ID: 5F50E4308A3416E8
2 changed files with 16 additions and 1 deletions

2
.gitignore vendored
View file

@ -1,5 +1,5 @@
.vscode/
__pycache__/

15
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
// 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": [
{
"name": "Python: Launch Server Standalone",
"type": "python",
"request": "launch",
"program": "./launch_standalone.py",
"console": "integratedTerminal"
}
]
}