-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
17 lines (13 loc) · 1.35 KB
/
Copy path.env.example
File metadata and controls
17 lines (13 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# ── Django Core ──────────────────────────────────────────────────────────────
DJANGO_SECRET_KEY=your-super-secret-key-here-min-50-chars
DJANGO_DEBUG=True
ALLOWED_HOSTS=localhost,127.0.0.1
# ── Database (Supabase PostgreSQL) ───────────────────────────────────────────
# Get from: Supabase → Project → Settings → Database → Connection String (URI)
DATABASE_URL=postgresql://postgres:[YOUR-PASSWORD]@db.[YOUR-PROJECT-REF].supabase.co:5432/postgres
# ── CORS ─────────────────────────────────────────────────────────────────────
CORS_ALLOWED_ORIGINS=http://localhost:3000,http://127.0.0.1:3000
# ── Redis (optional — defaults to in-memory cache) ───────────────────────────
# REDIS_URL=redis://localhost:6379/0
# ── Logging ──────────────────────────────────────────────────────────────────
DJANGO_LOG_LEVEL=DEBUG