CHIEF is a privacy-first personal operations platform.
- Docker
- Docker Compose
- Python 3.12 (optional, for local development)
- backend/ - FastAPI application
- frontend/ - frontend application placeholder
- core/ - shared core infrastructure
- modules/ - future module packages
- docker/ - Docker-related assets
- docs/ - architecture and project documents
- scripts/ - operational scripts
- tests/ - tests
- Copy .env.example to .env if you want to override defaults.
- Build and start the stack:
docker compose up --buildThe stack starts:
- backend on http://localhost:8000
- postgres on localhost:5432
- redis on localhost:6379
curl http://localhost:8000/healthExpected response:
{"status": "healthy"}docker compose up
docker compose down
docker compose logs -f backend