From 08f79ba5bef334131c617d8d4ef79e715789ac08 Mon Sep 17 00:00:00 2001 From: Josh Craig Date: Fri, 16 Oct 2020 18:31:55 +0100 Subject: [PATCH] my desktop changes --- .vscode/launch.json | 24 ++++++++++++++++++++++++ .vscode/settings.json | 3 +++ 2 files changed, 27 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/settings.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..b7637baa --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,24 @@ +{ + // 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", + "module": "flask", + "env": { + "FLASK_APP": "app.py", + "FLASK_ENV": "development", + "FLASK_DEBUG": "0" + }, + "args": [ + "run", + "--no-debugger" + ], + "jinja": true + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..feeded3d --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "python.pythonPath": "c:\\Users\\joshc\\FlaskWebRepo\\data-driven-web-apps-with-flask\\env\\Scripts\\python.exe" +} \ No newline at end of file