Full-stack energy management system for Tianpu Daxing campus. - Frontend: React 19 + TypeScript + Ant Design + ECharts - Backend: FastAPI + SQLAlchemy + PostgreSQL/TimescaleDB - Features: PV monitoring, heat pump management, carbon tracking, alarms, reports Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
393 B
JSON
20 lines
393 B
JSON
{
|
|
"version": "0.0.1",
|
|
"configurations": [
|
|
{
|
|
"name": "frontend",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": ["run", "dev"],
|
|
"port": 3000,
|
|
"cwd": "frontend"
|
|
},
|
|
{
|
|
"name": "backend",
|
|
"runtimeExecutable": "uvicorn",
|
|
"runtimeArgs": ["app.main:app", "--reload", "--port", "8000"],
|
|
"port": 8000,
|
|
"cwd": "backend"
|
|
}
|
|
]
|
|
}
|