diff --git a/.gitignore b/.gitignore index 6d17870..6f4ffc9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ +.vscode/settings.json __pycache__ .env \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..a584819 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,3 @@ +{ + "recommendations": ["ms-python.python"] +} diff --git a/.vscode/launch.json b/.vscode/launch.json index 9fe3424..49d584b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,18 +1,17 @@ { - // 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: FastAPI", - "type": "python", - "request": "launch", - "module": "uvicorn", - "args": [ - "main:app" - ], - "jinja": true - } - ] -} \ No newline at end of file + // 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: FastAPI", + "type": "python", + "request": "launch", + "module": "uvicorn", + "args": ["app.main:app"], + "jinja": true, + "justMyCode": false + } + ] +}