mirror of
https://github.com/farcasclaudiu/learn-build-apps-copilot-agent.git
synced 2026-06-22 09:01:39 +03:00
39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch Django Backend",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/octofit-tracker/backend/manage.py",
|
|
"args": ["runserver", "0.0.0.0:8000"],
|
|
"django": true,
|
|
"justMyCode": true,
|
|
"python": "${workspaceFolder}/octofit-tracker/backend/venv/bin/python",
|
|
"env": {
|
|
"PYTHONPATH": "${workspaceFolder}/octofit-tracker/backend/venv/bin/python",
|
|
"VIRTUAL_ENV": "${workspaceFolder}/octofit-tracker/backend/venv",
|
|
"PATH": "${workspaceFolder}/octofit-tracker/backend/venv/bin:${env:PATH}"
|
|
}
|
|
},
|
|
{
|
|
"name": "Launch Vite Frontend",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"cwd": "${workspaceFolder}/octofit-tracker/frontend",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"dev",
|
|
"--",
|
|
"--host",
|
|
"0.0.0.0"
|
|
],
|
|
"port": 5173,
|
|
"env": {
|
|
"VITE_CODESPACE_NAME": "${env:CODESPACE_NAME}"
|
|
}
|
|
}
|
|
]
|
|
}
|