forked from bcgov/sbc-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdotenv_template
55 lines (40 loc) · 1.39 KB
/
dotenv_template
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
#
# This file contains the environment-specific settings that are read by python-dotenv. Place it somewhere above your
# source code and it will be used.
#
# ===== notify-api ======================================================================================================
# Connection to local database.
DATABASE_URL="postgresql://postgres@localhost/postgres"
DATABASE_USERNAME="postgres"
DATABASE_PASSWORD="postgres"
DATABASE_NAME="postgres"
DATABASE_HOST="localhost"
DATABASE_PORT="54334"
# Connection to unit test database.
DATABASE_TEST_URL="postgresql://postgres:admin@localhost:54335/postgres"
DATABASE_TEST_USERNAME=postgres
DATABASE_TEST_PASSWORD=postgres
DATABASE_TEST_HOST=localhost
DATABASE_TEST_PORT=54335
DATABASE_TEST_NAME=postgres
# The sentry.io Data Source Name for the project. For local development this should always be blank, to prevent the
# logging (and emailing) of errors. However it can be temporarily set when working with sentry itself.
#
SENTRY_DSN=
#application settings
MAIL_FROM_ID=
MAIL_PASSWORD=
MAIL_PORT=25
MAIL_SERVER=
MAIL_USERNAME=
MAIL_USE_SSL=
MAIL_USE_TLS=
NATS_CLIENT_NAME="entity.notifiation.worker"
NATS_CLUSTER_ID="test-cluster"
NATS_QUEUE="notifiation-worker"
NATS_SERVERS="nats://127.0.0.1:4222"
NATS_SUBJECT="entity.notifiations"
NATS_CONNECTION_OPTIONS={}
PENDING_EMAIL_TIME_FRAME=300
FAILURE_EMAIL_TIME_FRAME=600
DELIVERY_FAILURE_RETRY_TIME_FRAME=2