pnpm i
pnpm devCritical for AI features: Set GOOGLE_GENAI_API_KEY.
- Get API key from Google AI Studio.
- Google Cloud Console → Secret Manager → Create secret
GOOGLE_GENAI_API_KEY. apphosting.yamlalready mounts it →firebase apps:deploy.
cp .env.example .env.local
# Edit .env.local with your GOOGLE_GENAI_API_KEY
pnpm dev
Repo Settings → Secrets → Add GOOGLE_GENAI_API_KEY.
See TODO.md high priority for Stripe/Firestore setup.
# CV Parser
curl -X POST http://localhost:3000/api/cv-parser \
-F 'cvFile=@path/to/cv.pdf' \
-F 'userId=test-user'
# Content Suggester
curl -X POST http://localhost:3000/api/content-suggester \
-H 'Content-Type: application/json' \
-d '{"text":"My project","contentType":"description"}'- 500 on AI APIs: Clearer msgs; validate
GOOGLE_GENAI_API_KEY. - COOP window.close: Handled in
next.config.js.
REST unchanged.