-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy path.env.example
More file actions
43 lines (35 loc) · 719 Bytes
/
.env.example
File metadata and controls
43 lines (35 loc) · 719 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Basic Config
ENV=dev
DEBUG=on
# Time & Language
LANGUAGE_CODE=en-us
TIMEZONE=UTC
USE_I18N=on
USE_L10N=on
# Emails
DEFAULT_FROM_EMAIL=no-reply@example.com
EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend
# Security and Users
SECRET_KEY=123
ALLOWED_HOSTS="*"
LOGIN_URL=/login/
LOGIN_REDIRECT_URL=/
# Databases
DATABASE_URL=postgres://localhost:5432/django_db
# Static & Media Files
STATIC_URL=/static/
MEDIA_URL=/media/
USE_S3_STATIC_STORAGE=off
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_STORAGE_BUCKET_NAME=
AWS_S3_ENDPOINT_URL=
# Celery
CELERY_BROKER_URL=redis://cache
CELERY_TASK_ALWAYS_EAGER=off
# Sentry
USE_SENTRY=off
SENTRY_DSN=
# Other apps
USE_DEBUG_TOOLBAR=on
USE_DJANGO_EXTENSIONS=on