From 548b15340b036192f2b216c0a5d15936acde3c91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Phillip=20K=C3=BChne?= Date: Fri, 31 May 2019 03:52:19 +0200 Subject: [PATCH] Fix VSCode launch config for folder restructuring --- .vscode/launch.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 30242bc..ea16cbd 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,15 +6,15 @@ "configurations": [ - {"name":"Python: Flask","type":"python","request":"launch","module":"flask","env":{"FLASK_APP":"main.py","FLASK_ENV":"development","FLASK_DEBUG":"1"},"args":["run","--no-debugger","--no-reload"],"jinja":true}, - {"name":"Python: Flask (with reload)","type":"python","request":"launch","module":"flask","env":{"FLASK_APP":"main.py","FLASK_ENV":"development","FLASK_DEBUG":"1"},"args":["run","--no-debugger"],"jinja":true}, + {"name":"Python: Flask","type":"python","request":"launch","module":"flask","env":{"FLASK_APP":"app/main.py","FLASK_ENV":"development","FLASK_DEBUG":"1"},"args":["run","--no-debugger","--no-reload"],"jinja":true}, + {"name":"Python: Flask (with reload)","type":"python","request":"launch","module":"flask","env":{"FLASK_APP":"app/main.py","FLASK_ENV":"development","FLASK_DEBUG":"1"},"args":["run","--no-debugger"],"jinja":true}, { "name": "Python: Flask (with reload, externally reachable)", "type": "python", "request": "launch", "module": "flask", "env": { - "FLASK_APP": "main.py", + "FLASK_APP": "app/main.py", "FLASK_ENV": "development", "FLASK_DEBUG": "1" },