This commit is contained in:
2026-02-10 02:27:12 +01:00
parent 781a4c3a4e
commit 7ba96f6a03
10 changed files with 495 additions and 0 deletions

20
docs/architecture.md Normal file
View File

@@ -0,0 +1,20 @@
# Architecture
## Monorepo Structure
- `apps/web`: public app
- `apps/admin`: admin app
- `packages/db`: prisma + data access
- `packages/content`: shared schemas and domain contracts
- `packages/ui`: shared UI layer
- `packages/config`: shared TS config
## Design Principles
- Shared contracts before feature implementation
- RBAC and CRUD base as prerequisites for MVP1 feature work
- Keep admin and public responsibilities clearly separated
## Pending Documentation
See documentation tasks in `TODO.md` under the Documentation track.