Chrome treats localhost:5555 and 127.0.0.1:8080 as different origins.
Handle OPTIONS preflight and emit Access-Control-Allow-* so /auth/signup
works from flutter run -d chrome.
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