-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.docker.example
More file actions
20 lines (18 loc) · 926 Bytes
/
Copy pathenv.docker.example
File metadata and controls
20 lines (18 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copy to `.env.docker` in the repo root (gitignored).
# Docker Compose `api` and `worker` services load this file.
#
# Weather forecast (trip sidebar) is served by the API via GET /api/weather/forecast.
# The key must be here for Docker — `backend/.env` alone is NOT loaded into containers.
# OPENWEATHER_API_KEY=paste_32_char_key_from_openweathermap.org
# Optional override (default: https://api.openweathermap.org/data/2.5)
# OPENWEATHER_BASE_URL=
# Typical compose stack (adjust to match your machine / Atlas):
# MONGO_URI=mongodb://travelplan_admin:dev_password_change_in_prod@mongodb:27017/travelplan_db?authSource=admin
# REDIS_HOST=redis
# REDIS_PORT=6379
# REDIS_PASSWORD=dev_redis_password
# REDIS_TLS=false
# (Compose Redis is plain TCP — code autodetects `redis` hostname; use REDIS_TLS only if you must override.)
# CLERK_SECRET_KEY=sk_test_...
# CLERK_WEBHOOK_SIGNING_SECRET=whsec_...
# GEMINI_API_KEY=...