Wishiz now lives in a small monorepo with:
apps/mobile: the existing Flutter appapps/api: the new Go API scaffoldcontracts/openapi: lightweight API contract placeholdersdocs: repo-level notesinfra: infrastructure-related files for future work
cd apps/mobile
flutter pub get
flutter analyze
flutter testcd apps/api
make lint
make testOr run the API with Docker:
docker compose up --build
curl http://localhost:8080/healthExpected response:
{"status":"ok"}