forked from bcgov/sbc-pay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dotenv_template
78 lines (64 loc) · 1.83 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
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
75
#
# 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.
#
# ===== pay-api ======================================================================================================
# Connection to local database.
DATABASE_URL="postgresql://postgres@localhost:54332/postgres"
DATABASE_USERNAME="postgres"
DATABASE_PASSWORD="postgres"
DATABASE_NAME="postgres"
DATABASE_HOST="localhost"
DATABASE_PORT="54332"
# Connection to unit test database.
DATABASE_TEST_URL="postgresql://postgres:admin@localhost:54333/postgres"
DATABASE_TEST_USERNAME=postgres
DATABASE_TEST_PASSWORD=postgres
DATABASE_TEST_HOST=localhost
DATABASE_TEST_PORT=543313
DATABASE_TEST_NAME=postgres
# Flask settings
PYTHONWARNINGS="once"
FLASK_APP=wsgi.py
FLASK_ENV="development"
FLASK_DEBUG=True
POD_TESTING=True
SQLALCHEMY_ECHO=False
# 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=
# keycloak settings
JWT_OIDC_ISSUER=
JWT_OIDC_WELL_KNOWN_CONFIG=
JWT_OIDC_ALGORITHMS=
JWT_OIDC_AUDIENCE=
JWT_OIDC_CLIENT_SECRET=
JWT_OIDC_JWKS_CACHE_TIMEOUT=
KEYCLOAK_ADMIN_CLIENTID='
KEYCLOAK_ADMIN_SECRET=
KEYCLOAK_AUTH_AUDIENCE=
KEYCLOAK_AUTH_CLIENT_SECRET=
KEYCLOAK_BASE_URL=
KEYCLOAK_REALMNAME=
#application settings
BCOL_VERIFY_USER_WSDL_URL=
BCOL_QUERY_PROFILE_WSDL_URL=
BCOL_DEBIT_ACCOUNT_VERSION=
BCOL_LINK_CODE=
BCOL_LDAP_USER_DN_PATTERN=
BCOL_LDAP_SERVER=
NATS_CLIENT_NAME=
NATS_CLUSTER_ID=
NATS_QUEUE=
NATS_SERVERS=
NATS_SUBJECT=
AUTH_API_ENDPOINT=
AUTH_WEB_PAY_TRANSACTION_URL=
CFS_BASE_URL=
CFS_CLIENT_ID=
CFS_CLIENT_SECRET=
CONNECT_TIMEOUT=30
CFS_GENERATE_RANDOM_INVOICE_NUMBER="False"
PAYBC_PORTAL_URL=
VALID_REDIRECT_URLS=