Location-based social app for discovering and hosting parties.
✅ Phase 0 Complete - Foundation implemented (T1-T8)
- ✅ Monorepo architecture (Turborepo + TypeScript)
- ✅ CI/CD pipeline with GitHub Actions
- ✅ Infrastructure (Docker Compose + Terraform)
- ✅ Backend API (NestJS) with authentication
- ✅ Database schema with PostGIS support
- ✅ React Native mobile app
- ✅ User onboarding with tribe selection
- 📋 T9-T11: Party CRUD and map discovery
- 📋 T12-T17: Join requests and unlocks
- 📋 T18-T19: Host verification
- 📋 T20-T25: Launch readiness
# Start infrastructure (Postgres, Redis, MinIO)
cd infrastructure
./scripts/start-local.sh
# Install dependencies
cd ../apps/api
npm install
# Run migrations
npm run migration:run
# Start API server
npm run start:devAPI runs at http://localhost:3000/api/v1
Docs at http://localhost:3000/api/docs
cd apps/mobile
npm install
npm start