-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker.env.example
More file actions
26 lines (20 loc) · 951 Bytes
/
Copy pathdocker.env.example
File metadata and controls
26 lines (20 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copy to `.env` in the repository root (next to docker-compose.yml) for `docker compose`.
# Docker Compose automatically loads a file named `.env` for ${VAR} substitution.
# The root `.env` is gitignored — do not commit real keys.
OPENAI_API_KEY=sk-...
# Optional: Supabase (audit REST insert)
# SUPABASE_URL=
# SUPABASE_SERVICE_ROLE_KEY=
# Treat as production in containers (disable anonymous dev user)
# API_ALLOW_DEV_USER=0
# CORS for the browser (comma-separated; include your Vercel URL when testing against a deployed API)
# API_CORS_ORIGINS=http://localhost:3000,http://127.0.0.1:3000
# Postgres (defaults match docker-compose service `db`)
# POSTGRES_USER=medcomply
# POSTGRES_PASSWORD=medcomply
# POSTGRES_DB=medcomply
# POSTGRES_PORT=5432
# FRONTEND_PORT=3000
# BACKEND_PORT=8000
# Public API URL the Next.js *browser* will call; use host + mapped backend port when using compose locally
# NEXT_PUBLIC_API_URL=http://localhost:8000