26 lines
677 B
JSON
26 lines
677 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Backend (FastAPI)",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "uvicorn",
|
|
"args": ["app.main:app", "--reload", "--host", "0.0.0.0", "--port", "8000"],
|
|
"cwd": "${workspaceFolder}/backend",
|
|
"env": {
|
|
"DATABASE_URL": "postgresql+asyncpg://postgres:postgres@localhost:5432/kmountain"
|
|
},
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"name": "Frontend (ng serve)",
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"url": "http://localhost:4200",
|
|
"webRoot": "${workspaceFolder}/src",
|
|
"preLaunchTask": "Start Frontend"
|
|
}
|
|
]
|
|
}
|