working 3 tier approach

This commit is contained in:
2026-06-11 22:34:55 -07:00
parent 4482a30793
commit e5fef8b181
47 changed files with 1288 additions and 200 deletions
+13 -8
View File
@@ -1,20 +1,25 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ng serve",
"type": "chrome",
"name": "Backend (FastAPI)",
"type": "python",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
"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": "ng test",
"name": "Frontend (ng serve)",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: test",
"url": "http://localhost:9876/debug.html"
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}/src",
"preLaunchTask": "Start Frontend"
}
]
}