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>
19 lines
430 B
Python
19 lines
430 B
Python
"""数据库初始化 - 创建所有表"""
|
|
import asyncio
|
|
import sys
|
|
sys.path.insert(0, "../backend")
|
|
|
|
from app.core.database import engine, Base
|
|
from app.models import * # noqa: F401, F403
|
|
|
|
|
|
async def init():
|
|
async with engine.begin() as conn:
|
|
await conn.run_sync(Base.metadata.create_all)
|
|
print("All tables created successfully!")
|
|
await engine.dispose()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(init())
|