Initial commit

This commit is contained in:
2026-06-20 04:28:24 +03:00
committed by GitHub
commit 07f02e0958
29 changed files with 1700 additions and 0 deletions
+38
View File
@@ -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}"
}
}
]
}