diff --git a/.gitignore b/.gitignore index 3d93a70..d777656 100644 --- a/.gitignore +++ b/.gitignore @@ -172,12 +172,12 @@ poetry.toml .ruff_cache/ ### VisualStudioCode ### -.vscode/* +# .vscode/* .vscode/settings.json -.vscode/tasks.json -.vscode/launch.json -.vscode/extensions.json -.vscode/*.code-snippets +# .vscode/tasks.json +# .vscode/launch.json +# .vscode/extensions.json +# .vscode/*.code-snippets # Local History for Visual Studio Code .history/ diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d7afddd --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + "configurations": [ + { + "name": "Python: FastAPI", + "type": "python", + "request": "launch", + "module": "uvicorn", + "args": [ + "app.main:app", + "--host", + "0.0.0.0", + "--port", + "8000", + "--reload" + ] + } + ] +} \ No newline at end of file