ovdashboard/api/.vscode/launch.json

23 lines
757 B
JSON
Raw Normal View History

2022-08-28 23:31:17 +00:00
{
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Main Module",
"type": "python",
"request": "launch",
2023-10-16 18:05:52 +00:00
"module": "ovdashboard_api.main",
"pythonArgs": [
"-Xfrozen_modules=off",
],
"env": {
"PYDEVD_DISABLE_FILE_VALIDATION": "1",
"LOG_LEVEL": "DEBUG",
"WEBDAV__CACHE_TTL": "30",
2023-10-16 18:05:52 +00:00
},
2022-09-07 11:58:43 +00:00
"justMyCode": true
2022-08-28 23:31:17 +00:00
}
]
}