-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (20 loc) · 1.51 KB
/
Copy path.env.example
File metadata and controls
26 lines (20 loc) · 1.51 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
# ─── Core ─────────────────────────────────────────────────────────────────────
# REQUIRED: Generate one with: python -c "from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())"
SECRET_KEY=django-insecure-change-this-in-production
# Set to True for local development, False in production
DEBUG=True
# Comma-separated list of allowed hosts
ALLOWED_HOSTS=localhost,127.0.0.1
# Comma-separated list of trusted CSRF origins (include https:// for production)
CSRF_TRUSTED_ORIGINS=http://localhost:8000
# ─── Database ─────────────────────────────────────────────────────────────────
# Leave empty to use SQLite (local dev).
# Example PostgreSQL: postgres://user:password@host:5432/dbname
DATABASE_URL=
# ─── Media Storage (Cloudinary) ───────────────────────────────────────────────
# Required in production. Get from https://cloudinary.com/
# Format: cloudinary://api_key:api_secret@cloud_name
CLOUDINARY_URL=
# ─── Superadmin Auto-Creation (used by build.sh) ──────────────────────────────
ADMIN_EMAIL=admin@qrdine.com
ADMIN_PASSWORD=change-me-in-production