.
└── chronostasis/
├── frontend/
│ └── ...
└── backend/
└── src/
├── api/
│ ├── handlers/ # HTTP handlers (controllers)
│ └── router.rs # Route configuration (Axum router)
├── database/
│ └── migrations/ # SeaORM migrations
├── common/ # Shared config, types, utils, errors
│ └── cfg.rs
├── dto/ # Data Transfer Objects (request/response structs)
├── entities/ # SeaORM entities
├── services/ # Business logic/services layer
├── models/ # Domain models (e.g., enums: UserRole, UserStatus...)
└── static/ # Static files/assets (e.g., images)
Start all services
docker compose updocker system prune -a --volumes- enable docker's file watch
- add production and development states to Dockerfile