Skip to content

Commit

Permalink
chore: update 1 file and create 1 file
Browse files Browse the repository at this point in the history
  • Loading branch information
kjaymiller committed Apr 1, 2023
1 parent 2769f54 commit e153bdd
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -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"
]
}
]
}

0 comments on commit e153bdd

Please sign in to comment.