forked from bcgov/STRR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.sample
More file actions
50 lines (43 loc) · 1.07 KB
/
Copy path.env.sample
File metadata and controls
50 lines (43 loc) · 1.07 KB
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
POD_NAMESPACE=local
# third party Services
#SENTRY_DSN=
#CODECOV_TOKEN=
LD_SDK_KEY=
# Registry Integration Services
AUTH_SVC_API_URL=
AUTH_SVC_API_VERSION=/api/v1
PAY_API_URL=
PAY_API_VERSION=/api/v1
LEGAL_API_URL=
LEGAL_API_VERSION_2=/api/v2
# svc account stuff
KEYCLOAK_AUTH_TOKEN_URL=
STRR_SERVICE_ACCOUNT_CLIENT_ID=
STRR_SERVICE_ACCOUNT_SECRET=
# Flask shite
FLASK_ENV=development
FLASK_APP=wsgi.py
SECRET=some md5 hash
APP_SETTINGS=dev
# SQL Alchemy
DATABASE_USERNAME=postgres
DATABASE_PASSWORD=postgres
DATABASE_NAME=postgres
DATABASE_HOST=localhost
DATABASE_PORT=15432
# Optional: Alembic runs migrations with this DB role so new objects are owned by it.
# For Cloud SQL IAM auth, set this to the service account's Postgres role name.
DATABASE_OWNER_ROLE=
## TEST DB
DATABASE_TEST_USERNAME=postgres
DATABASE_TEST_PASSWORD=postgres
DATABASE_TEST_NAME=test
DATABASE_TEST_HOST=localhost
DATABASE_TEST_PORT=15433
# JWT Settings
JWT_OIDC_WELL_KNOWN_CONFIG=
JWT_OIDC_ALGORITHMS=RS256
JWT_OIDC_AUDIENCE=
JWT_OIDC_CLIENT_SECRET=
JWT_OIDC_CACHING_ENABLED=True
JWT_OIDC_JWKS_CACHE_TIMEOUT=300