- backend/.env.example: add GEMINI_API_KEY and PEXELS_API_KEY placeholders - backend/Makefile: add test-integration to PHONY targets - backend/README.md: document external API keys, import/translate commands - docs/Design.md, docs/Tech.md: reflect Iteration 1 implementation and future plans Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
391 B
Plaintext
19 lines
391 B
Plaintext
# Database
|
|
DATABASE_URL=postgres://food_ai:food_ai_local@localhost:5432/food_ai?sslmode=disable
|
|
|
|
# Firebase
|
|
FIREBASE_CREDENTIALS_FILE=./firebase-credentials.json
|
|
|
|
# JWT
|
|
JWT_SECRET=change-me-in-production
|
|
JWT_ACCESS_DURATION=15m
|
|
JWT_REFRESH_DURATION=720h
|
|
|
|
# Server
|
|
PORT=8080
|
|
ALLOWED_ORIGINS=http://localhost:3000
|
|
|
|
# External APIs
|
|
GEMINI_API_KEY=your-gemini-key
|
|
PEXELS_API_KEY=your-pexels-key
|