-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.production.example
More file actions
26 lines (19 loc) · 1.24 KB
/
.env.production.example
File metadata and controls
26 lines (19 loc) · 1.24 KB
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
# SoundScore Production Environment Variables
# Copy this to .env.production and fill in real values
# ── Node.js Backend (legacy / local dev) ─────────────────────────────────
NODE_ENV=production
PORT=8080
HOST=0.0.0.0
# ── Supabase Postgres (Session mode pooler, port 6543) ───────────────────
SUPABASE_DB_URL=postgresql://postgres.[ref]:[password]@aws-0-us-east-1.pooler.supabase.com:6543/postgres
# ── Upstash Redis REST (edge-compatible, no TCP required) ─────────────────
UPSTASH_REDIS_REST_URL=https://your-redis.upstash.io
UPSTASH_REDIS_REST_TOKEN=your-token
# ── Spotify API (required for album search enrichment + OAuth import) ─────
SPOTIFY_CLIENT_ID=your-id
SPOTIFY_CLIENT_SECRET=your-secret
# ── Auth ──────────────────────────────────────────────────────────────────
AUTH_SALT_ROUNDS=12
# ── CORS (use * for mobile-only, restrict for web) ───────────────────────
ALLOWED_ORIGINS=*
LOG_LEVEL=info