Seed a reusable demo invite (ALLOW_DEMO_INVITE, default on) and surface it
on the Flutter signup screen with one-tap fill so others can try without
asking for a one-off admin mint.
Co-authored-by: okuma <o0kuma@users.noreply.github.com>
# 터미널 1 — AI 서비스cd ai-service && pip install -r requirements.txt
exportGEMINI_API_KEY=... # or repo-root .env
uvicorn app.main:app --port 8001# 터미널 2 — 코어 백엔드cd core-backend
exportADMIN_API_TOKEN=dev-admin-token
go run . migrate && go run .
# 초대 코드 발급 예:# curl -X POST http://localhost:8080/invites -H "Authorization: Bearer $ADMIN_API_TOKEN"# 터미널 3 — Flutter (Android)cd mobile && flutter run --dart-define=CORE_API_BASE=http://10.0.2.2:8080