Skip to content

Application Design and Layout

James Brucker edited this page Jun 17, 2025 · 5 revisions

Backend

Uses SqlAlchemy and FastAPI. Application deployed in a Docker container.

homelog/
├── app/
│   ├── core/
│   │   ├── config.py
│   │   └── db.py
│   ├── models/
│   │   └── user.py
│   └── main.py
├── db/
│   └── init.d/
│       └── 00-schema.sql
├── alembic/           <-- created later via Alembic init
├── docker-compose.yml
├── Dockerfile
├── requirements.txt
└── .env

Clone this wiki locally