Initial commit

This commit is contained in:
phil 2023-11-06 17:04:17 +05:30
commit 3355b9d716
15 changed files with 1635 additions and 0 deletions

21
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,21 @@
{
// 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": [
"src.application:app",
"--port=5003",
"--reload"
],
"jinja": true,
"justMyCode": false
}
]
}

8
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,8 @@
{
"python.analysis.extraPaths": [
"${workspaceFolder}/__pypackages__/3.11/lib"
],
"python.autoComplete.extraPaths": [
"${workspaceFolder}/__pypackages__/3.11/lib"
]
}