This repository contains the initial monorepo scaffold for BMad Mobile:
mobile/Flutter application baselinebackend/FastAPI backend baselineinfra/local infrastructure (PostgreSQL via Docker Compose)docs/bootstrap and verification notes
- Start Postgres:
cd infradocker compose up -d
- Start backend:
cd ../backendpython -m venv .venvsource .venv/bin/activatepip install -e .[dev]cp .env.example .envalembic upgrade headpython scripts/ensure_dev_host.pyuvicorn app.main:app --reload
- Check health:
curl http://127.0.0.1:8000/api/v1/health
- Log in locally:
- Email:
host@example.com - Password:
Password123!
- Email:
See docs/bootstrap.md for full verification steps.