chore: update vscode config files

This commit is contained in:
Stefan Stammberger 2021-10-02 10:01:43 +02:00
parent 8ce482d6a8
commit 93610c8588
No known key found for this signature in database
GPG key ID: 645FA807E935D9D5
3 changed files with 20 additions and 17 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
.vscode/settings.json
__pycache__
.env

3
.vscode/extensions.json vendored Normal file
View file

@ -0,0 +1,3 @@
{
"recommendations": ["ms-python.python"]
}

33
.vscode/launch.json vendored
View file

@ -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
}
]
}
// 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
}
]
}