-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenv.sample
More file actions
58 lines (49 loc) · 2.3 KB
/
Copy pathenv.sample
File metadata and controls
58 lines (49 loc) · 2.3 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Template for the .env file used by compose.yml (gitignored).
# Copy it (`cp env.sample .env`) and fill in the values — a complete working
# development configuration is available in the documentation:
# docs/src/development/getting-started.md ("Configuration").
# See docs/src/admin/environment.md for the description of every variable.
# ── Django core ──────────────────────────────────────────────
ADMIN_EMAIL=
ADMIN_PASSWORD=
ALLOWED_HOSTS=
SECRET_KEY=
DJANGO_SETTINGS_MODULE=
PYTHONPATH=
# ── Database / cache / broker ────────────────────────────────
DATABASE_URL=
CACHE_URL=
CELERY_BROKER_URL=
CELERY_TASK_ALWAYS_EAGER=
# ── Security ─────────────────────────────────────────────────
CSRF_COOKIE_SECURE=
SECURE_SSL_REDIRECT=
SESSION_COOKIE_DOMAIN=
SESSION_COOKIE_SECURE=
SOCIAL_AUTH_REDIRECT_IS_HTTPS=
# ── File storage backends ────────────────────────────────────
FILE_STORAGE_DEFAULT=
FILE_STORAGE_IMAGES=
FILE_STORAGE_DNN=
FILE_STORAGE_MEDIA=
FILE_STORAGE_STATIC=
# ── Filesystem roots ─────────────────────────────────────────
DEFAULT_ROOT=
IMAGES_ROOT=
MEDIA_ROOT=
STATIC_ROOT=
# ── ML models ────────────────────────────────────────────────
DEEPFACE_HOME=
OFIQ_DATA_DIR=
# ── Performance tuning ───────────────────────────────────────
OMP_NUM_THREADS=
TF_NUM_INTRA_OP_THREADS=
TF_NUM_INTER_OP_THREADS=
# ── Integration ──────────────────────────────────────────────
HOPE_API_TOKEN=
# ── Compose-level (volume paths, port bindings) ──────────────
# Only used for ${VAR} interpolation in compose.yml, not passed to Django.
# IMAGES_HOST_PATH=
# DB_PORT=
# REDIS_PORT=
# CELERY_CONCURRENCY=