This project demonstrates how smart meter interval data stored in PostgreSQL can be transformed into a full analytics workflow and exposed through a FastAPI backend for web applications.
├── src/ │ ├── app.py # FastAPI application entry point │ ├── core/ # Core infrastructure │ │ ├── config.py # Application configuration │ │ └── db.py # Database setup and session management │ ├── ...