fed8b2eed7
Backend release / release (push) Waiting to run
Bandit Security Scan / bandit_scan (push) Waiting to run
Build and push multi-arch DocsGPT Docker image / build (linux/amd64, ubuntu-latest, amd64) (push) Waiting to run
Build and push multi-arch DocsGPT Docker image / build (linux/arm64, ubuntu-24.04-arm, arm64) (push) Waiting to run
Build and push multi-arch DocsGPT Docker image / manifest (push) Blocked by required conditions
Build and push DocsGPT FE Docker image for development / build (linux/amd64, ubuntu-latest, amd64) (push) Waiting to run
Build and push DocsGPT FE Docker image for development / build (linux/arm64, ubuntu-24.04-arm, arm64) (push) Waiting to run
Build and push DocsGPT FE Docker image for development / manifest (push) Blocked by required conditions
Python linting / ruff (push) Waiting to run
Run python tests with pytest / Run tests and count coverage (3.12) (push) Waiting to run
React Widget Build / build (push) Waiting to run
71 lines
1.6 KiB
JSON
71 lines
1.6 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Frontend Debug (npm)",
|
|
"type": "node-terminal",
|
|
"request": "launch",
|
|
"command": "npm run dev",
|
|
"cwd": "${workspaceFolder}/frontend"
|
|
},
|
|
{
|
|
"name": "Flask Debugger",
|
|
"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}",
|
|
},
|
|
{
|
|
"name": "Celery Debugger",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "celery",
|
|
"env": {
|
|
"PYTHONPATH": "${workspaceFolder}",
|
|
},
|
|
"args": [
|
|
"-A",
|
|
"application.app.celery",
|
|
"worker",
|
|
"-l",
|
|
"INFO",
|
|
"--pool=solo"
|
|
],
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"name": "Dev Containers (Mongo + Redis)",
|
|
"type": "node-terminal",
|
|
"request": "launch",
|
|
"command": "docker compose -f deployment/docker-compose-dev.yaml up --build",
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "DocsGPT: Full Stack",
|
|
"configurations": [
|
|
"Frontend Debug (npm)",
|
|
"Flask Debugger",
|
|
"Celery Debugger"
|
|
],
|
|
"presentation": {
|
|
"group": "DocsGPT",
|
|
"order": 1
|
|
}
|
|
}
|
|
]
|
|
} |