mirror of
https://github.com/farcasclaudiu/learn-build-apps-copilot-agent.git
synced 2026-06-22 07:01:37 +03:00
Initial commit
This commit is contained in:
Vendored
+38
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"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}"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user