-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtemplate.env
32 lines (29 loc) · 939 Bytes
/
template.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
#Example .env template
DEBUG=True
SECRET_KEY="udaisdfaiwurd81672r615162358125@@@!*@%3815200---12321"
EMAIL_BACKEND="django.core.mail.backends.smtp.EmailBackend"
EMAIL_HOST="smtp.gmail.com"
EMAIL_PORT=587
EMAIL_USE_TLS=True
EMAIL_HOST_USER="[email protected]"
EMAIL_HOST_PASSWORD=maple@123
POSTGRES_HOST=postgres
POSTGRES_PORT=5432
POSTGRES_USER=gecompostgres
POSTGRES_PASSWORD=gecompostgres
POSTGRES_DATABASE=gecompostgres
DOMAIN="example.com"
EMAIL="[email protected]"
ALLOWED_HOSTS=0.0.0.0,127.0.0.1,localhost
CSRF_TRUSTED_ORIGINS=http://localhost,https://example.com
#collectstatic in docker[disable in production]
RUN_COLLECTSTATIC=True
#for using cloud storage false for local storage
USE_CLOUD_STORAGE=False
#following configuration will be used if USE_CLOUD_STORAGE is True
#AWS_STORAGE_BUCKET_NAME =
#AWS_S3_ENDPOINT_URL =
#AWS_S3_ACCESS_KEY_ID =
#AWS_S3_SECRET_ACCESS_KEY =
#AWS_S3_SIGNATURE_VERSION =
#AWS_S3_CUSTOM_DOMAIN=