summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorFivePixels <dylan.bolger00@gmail.com>2023-02-19 19:37:09 -0600
committerFivePixels <dylan.bolger00@gmail.com>2023-02-19 19:37:09 -0600
commit34988c3d22dd00f5dc7f68ff06ba71d146008257 (patch)
tree263650cd52b0946c789b70fa055e13b91a328a00 /.vscode
parentfca2594b3ed87fcdc02be12523d43e113931a3ff (diff)
downloadStrengthy-34988c3d22dd00f5dc7f68ff06ba71d146008257.tar.xz
Strengthy-34988c3d22dd00f5dc7f68ff06ba71d146008257.zip
Add vscode launch configuration
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json26
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