-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.env.example
52 lines (42 loc) · 1.12 KB
/
.env.example
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
# django
APP_ENV='local' # local, staging, production
SECRET_KEY='' # generate from https://djecrety.ir/
DEBUG=False
# [::1] is all IPv6
# * is all IPv4
ALLOWED_HOSTS='[::1] *'
# database access credentials
DB_ENGINE=django_tenants.postgresql_backend
DB_HOST=db
DB_NAME=plio
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=''
# web server
APP_PORT=8001
# google oauth credentials
GOOGLE_OAUTH2_CLIENT_ID=''
GOOGLE_OAUTH2_CLIENT_SECRET=''
# aws credentials
AWS_ACCESS_KEY_ID=''
AWS_SECRET_ACCESS_KEY=''
AWS_REGION=''
AWS_STORAGE_BUCKET_NAME=''
# redis details
REDIS_HOSTNAME='redis'
REDIS_PORT=6379
SUPERUSER_EMAIL=''
SUPERUSER_PASSWORD=''
DEFAULT_TENANT_NAME=Plio
DEFAULT_TENANT_SHORTCODE=plio
DEFAULT_TENANT_DOMAIN=0.0.0.0
# The driver for sending SMSs. Possible values are `sns` or `log`.
# Use `sns` to have AWS SNS support. The AWS credentials must be present for this.
# Use an empty string to log SMSs into a file instead. Recommended for development mode.
SMS_DRIVER='sns'
# Sentry Data Source Name
SENTRY_DSN=''
# Default OAuth2 API Client
DEFAULT_OAUTH2_CLIENT_SETUP=True
DEFAULT_OAUTH2_CLIENT_ID=''
DEFAULT_OAUTH2_CLIENT_SECRET=''