946 B
946 B
FullMoon Bakehouse Platform (gpt)
This repository houses the custom full stack platform for Full Moon Bakehouse. The stack combines a Next.js frontend and a Django + Celery backend, all orchestrated with Docker for easy local testing.
Getting Started
- Duplicate the environment template:
cp infra/docker/.env.example infra/docker/.env.development - Adjust any secrets in
.env.development(Stripe, Pushbullet, Django secret key). - Launch the stack:
docker compose up --build - Access the services at:
- Frontend: http://localhost:3001
- API: http://localhost:8000
- MinIO Console: http://localhost:9001
Next Steps
- Configure S3 storage, Stripe keys, and Pushbullet notifications once credentials are available.
- Add Makefile tasks to wrap common Docker commands (build, migrate, test).
The infra/docker/README.md file contains service-level details and helper commands.