-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
74 lines (74 loc) · 3.35 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# name of project. REQUIRED during deployment
PROJECT_NAME="lukimgather"
# version of project. REQUIRED during production deployment
PROJECT_VERSION=
# type of server environment supported types are development, testing, staging, production
# production and staging are secure environment
# REQUIRED
SERVER_ENVIRONMENT=
# django secret key REQUIRED FOR SECURE ENVIRONMENT
# for insecure environment it is automatically generated out if not provided
# minimum length of 50 is required.
# Use https://djecrety.ir/ for generating secret key for secure service
DJANGO_SECRET_KEY=
# optional list of allowed hosts. default value is empty for secure environment.
# where for insecure environment it is "0.0.0.0","localhost","127.0.0.1"
# Multiple can be listed out by using comma(,) as seprator
DJANGO_ALLOWED_HOSTS=
# url of database default database is SpatiaLite.
# sqlite: spatialite:///PATH
# postgres: postgis://USER:PASSWORD@HOST:PORT/NAME
# for other database url example and constraint see https://github.com/jacobian/dj-database-url
DATABASE_URL=
# url of cache default is dummy:// . It is "dummy" cache that doesn’t actually cache
# redis: redis://USER:PASSWORD@HOST:PORT/DB
# For more info visit https://github.com/epicserve/django-cache-url
CACHE_URL=
# CORS whitelist url. default value is empty. Multiple can be listed by using comma(,).
# Regex string are also supported
CORS_ALLOWED_ORIGIN_REGEXES=
# enable sentry?. Default is False
ENABLE_SENTRY=
# sentry DSN url. Required if ENABLE_SENTRY is True
SENTRY_DSN=
# Whether to enable watchtower or not. Default is False
ENABLE_WATCHTOWER=
# Name of the AWS cloudwatch region to use (eg. eu-west-3). Required if ENABLE_WATCHTOWER is set to True
AWS_CLOUDWATCH_REGION_NAME=
# Name of the AWS cloudwatch log group to use. Required if ENABLE_WATCHTOWER is set to True
AWS_LOG_GROUP_NAME=
# url of email default is console://user:password@localhost?_server_email=root@localhost&_default_from_email=root@localhost.
# For more info visit https://github.com/migonzalvar/dj-email-url
EMAIL_URL=
# email address for activity notification
ACTIVITY_NOTIFICATION_EMAIL=
# whether to enable celery or not. Default is True
ENABLE_CELERY=
# type of broker supported broker are redis and filesystem. Default is filesystem
CELERY_BROKER_TYPE=
# Celery broker url. Required if CELERY_BROKER_TYPE is redis. Same as cache url format
CELERY_BROKER_URL=
# (Setting related to worker) LIST of queue task to run by celery worker seperated by comma(,). Not passing anything runs all tasks
CELERY_QUEUES=
# Whether to enable aws SNS or not. Default is False
ENABLE_SNS=
# Name of the AWS SNS region to use (eg. eu-west-3). Required if ENABLE_SNS is set to True
AWS_SNS_REGION_NAME=
# Amazon Web Services access key, as a string. Required if ENABLE_SNS is set to True
AWS_ACCESS_KEY_ID=
# Amazon Web Services secret access key, as a string. Required if ENABLE_SNS is set to True
AWS_SECRET_ACCESS_KEY=
# Whether to enable push notification or not. Default is False
ENABLE_PUSH_NOTIFICATION=
# Firebase Cloud Messaging API key
FCM_API_KEY=
# The full url that FCM notifications will be POSTed to. Defaults to https://fcm.googleapis.com/fcm/send.
FCM_POST_URL=
# The maximum amount of recipients that can be contained per bulk message
FCM_MAX_RECIPIENTS=
# The timeout on FCM POSTs
FCM_ERROR_TIMEOUT=
# Absolute path to your APNS certificate file
APNS_CERTIFICATE=
# Bundle ID of app
APNS_TOPIC=