2025-05-10 13:58:58 +01:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
2025-07-15 14:40:43 +01:00
|
|
|
{
|
2025-07-15 15:42:47 +01:00
|
|
|
"name": "Python: Debug Account",
|
2025-07-15 14:40:43 +01:00
|
|
|
"type": "debugpy",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "${file}",
|
|
|
|
"console": "integratedTerminal"
|
|
|
|
},
|
2025-05-10 13:58:58 +01:00
|
|
|
{
|
2025-07-13 19:40:04 +01:00
|
|
|
"name": "Python: Flask",
|
2025-05-10 13:58:58 +01:00
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2025-07-13 19:40:04 +01:00
|
|
|
"module": "flask",
|
|
|
|
"env": {
|
2025-07-14 13:42:58 +01:00
|
|
|
"FLASK_APP": "ktvmanager.main:create_app",
|
|
|
|
"FLASK_ENV": "development",
|
|
|
|
"PYTHONPATH": "${workspaceFolder}",
|
|
|
|
"FLASK_RUN_PORT": "5001"
|
2025-07-13 19:40:04 +01:00
|
|
|
},
|
|
|
|
"args": [
|
|
|
|
"run",
|
2025-07-14 13:42:58 +01:00
|
|
|
"--host=0.0.0.0"
|
2025-07-13 19:40:04 +01:00
|
|
|
],
|
2025-07-14 13:42:58 +01:00
|
|
|
"jinja": false
|
2025-07-15 15:42:47 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Python: Debug Single Account",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "${workspaceFolder}/debug_account.py",
|
|
|
|
"args": [
|
|
|
|
"Karl0ss2903",
|
|
|
|
"SNJZCKKK9J"
|
|
|
|
],
|
|
|
|
"console": "integratedTerminal"
|
2025-05-10 13:58:58 +01:00
|
|
|
}
|
|
|
|
]
|
2023-09-14 12:16:18 +01:00
|
|
|
}
|