mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 00:23:17 +00:00
36 lines
881 B
JSON
36 lines
881 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Docker Debug Frontend",
|
|
"request": "launch",
|
|
"type": "chrome",
|
|
"preLaunchTask": "docker-compose: debug:frontend",
|
|
"url": "http://127.0.0.1:5173",
|
|
"webRoot": "${workspaceFolder}/frontend",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
]
|
|
},
|
|
{
|
|
"name": "Python Debugger: Flask",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "flask",
|
|
"env": {
|
|
"FLASK_APP": "application/app.py",
|
|
"PYTHONPATH": "${workspaceFolder}",
|
|
"FLASK_ENV": "development",
|
|
"FLASK_DEBUG": "1",
|
|
"FLASK_RUN_PORT": "7091",
|
|
"FLASK_RUN_HOST": "0.0.0.0"
|
|
|
|
},
|
|
"args": [
|
|
"run",
|
|
"--no-debugger"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
},
|
|
]
|
|
} |