Files
gallery/weather.code-workspace
2024-07-31 00:18:32 +03:00

36 lines
692 B
Plaintext

{
"folders": [
{
"path": "."
}
],
"settings": {
"python.testing.pytestArgs": ["tests", "-s"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"files.exclude": {
"**/__pycache__": true
},
"terminal.integrated.env.linux": {
"PYTHONPATH": "${workspaceFolder}"
}
},
"launch": {
"version": "0.2.1",
"configurations": [
{
"name": "app",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
"weather.main:app",
"--reload",
"--log-config",
"weather/logging.yaml"
]
}
]
}
}