diff --git a/.gitignore b/.gitignore index 03f1f9b..9189826 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ .venv/ __pycache__/ .env -.vscode +## .vscode .db/ \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..c3ef122 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,27 @@ +{ + // 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": "IE Bank Backend", + "type": "python", + "request": "launch", + "module": "flask", + "env": { + "FLASK_APP": "app.py", + "FLASK_DEBUG": "1", + "ENV": "local", + "APPINSIGHTS_INSTRUMENTATIONKEY": "3c75b957-a1d0-4ddb-ab2d-a0521c35c566" + }, + "args": [ + "run", + "--no-debugger", + "--no-reload" + ], + "jinja": true, + "justMyCode": true + } + ] +} \ No newline at end of file diff --git a/instance/local.db b/instance/local.db new file mode 100644 index 0000000..057ba21 Binary files /dev/null and b/instance/local.db differ