diff options
| author | FivePixels <dylan.bolger00@gmail.com> | 2023-02-19 19:37:09 -0600 |
|---|---|---|
| committer | FivePixels <dylan.bolger00@gmail.com> | 2023-02-19 19:37:09 -0600 |
| commit | 34988c3d22dd00f5dc7f68ff06ba71d146008257 (patch) | |
| tree | 263650cd52b0946c789b70fa055e13b91a328a00 /.vscode | |
| parent | fca2594b3ed87fcdc02be12523d43e113931a3ff (diff) | |
| download | Strengthy-34988c3d22dd00f5dc7f68ff06ba71d146008257.tar.xz Strengthy-34988c3d22dd00f5dc7f68ff06ba71d146008257.zip | |
Add vscode launch configuration
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/launch.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..a5005b1 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,26 @@ +{ + // 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: Flask", + "type": "python", + "request": "launch", + "cwd": "${workspaceFolder}/app", + "module": "flask", + "env": { + "FLASK_APP": "app.py", + "FLASK_DEBUG": "1" + }, + "args": [ + "run", + "--no-debugger", + "--no-reload" + ], + "jinja": true, + "justMyCode": false + }, + ] +}
\ No newline at end of file |
