forked from quera-pychi-team3/Course-Selection-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
31 lines (23 loc) · 744 Bytes
/
.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
DEBUG=1
SECRET_KEY="H2@us<&IU\^{a<%#TnUHeq6Y,@6S9~Y3SLVk[}7BP\\x~Icdc_dYN1q,3Wbf-xz/~(wz4<"
DJANGO_ALLOWED_HOSTS="['*']"
DATABASE=postgres
SQL_ENGINE="django.db.backends.postgresql"
SQL_DATABASE=css
SQL_USER=css
SQL_PASSWORD=Z8n91CzdTL8gwINA
SQL_HOST=db
SQL_PORT=5432
CELERY_BROKER_URL="redis://redis:6379/0"
CELERY_RESULT_BACKEND="redis://redis:6379/0"
EMAIL_BACKEND="django.core.mail.backends.smtp.EmailBackend"
EMAIL_PORT=587
EMAIL_USE_TLS=True
EMAIL_HOST="smtp.gmail.com"
EMAIL_HOST_USER="[email protected]"
EMAIL_HOST_PASSWORD="sawgojyooxtqvfnn"
MINIO_ENDPOINT="http://s3:9000"
MINIO_ROOT_USER=minioadmin
MINIO_ROOT_PASSWORD=minioadmin
MINIO_BUCKET_NAME=django-files
DEFAULT_FILE_STORAGE="storages.backends.s3boto3.S3Boto3Storage"