949 B
949 B
Repository Structure
infra/: Infrastructure and operations (Docker, scripts, deployment).backend/: FastAPI backend.apps/: Flutter mobile app.docs/: Documentation and design/planning artifacts.
Rules Hierarchy
- This root
AGENTS.mddefines global rules and applies to all changes. - When editing
backend/, you must also followbackend/AGENTS.md. - When editing
apps/, you must also followapps/AGENTS.md.
Docker Startup
Always start services with the env file:
docker compose --env-file .env -f infra/docker/docker-compose.yml up -d
Git Branch and Worktree Policy
- Use
devas the default base branch for day-to-day development. - New development worktrees must be created from
dev(never frommain). - Do not develop or commit directly on
mainoutside explicit release/merge workflows. - Do not rewrite
mainhistory unless explicitly requested (including reset and force push).