-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.env
35 lines (27 loc) · 980 Bytes
/
example.env
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
# Dev settings
VIRTUAL_ENV_NAME="ing-api"
COMPOSE_PROJECT_NAME="ing-api"
# Django settings
# Core settings
DJANGO_SETTINGS_MODULE="webapp.settings"
DEBUG="false"
SECRET_KEY="super_secret_secret_key"
SITE_URL="http://localhost:8000"
ADMIN_USER="email=nathanael.l.gordon@gmail.com,password=changeme"
# django-axes settings
AXES_REDIS_URL="rediscache://redis/1"
# see src/webapp/settings.py for more info about this variable
AXES_KEY_PREFIX="ingapi"
# see src/webapp/settings.py for more info about this variable
AXES_META_PRECEDENCE_ORDER="HTTP_X_FORWARDED_FOR,X_FORWARDED_FOR"
# django-storages AWS S3 settings
AWS_STORAGE_BUCKET_NAME="django"
AWS_S3_REGION_NAME="ap-southeast-2"
DATABASE_URL="postgres://django:django@db:5432/django"
CELERY_BROKER_URL="redis://redis/0"
# see src/webapp/settings.py for more info about this variable
CELERY_TASK_DEFAULT_QUEUE="ingapi"
# Other keys
MAILGUN_API_KEY="changeme"
# Optional settings
MAILGUN_SENDER_DOMAIN="mailgun.my_site.com"