-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample.env
31 lines (27 loc) · 906 Bytes
/
sample.env
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
# app settings
APP_ENV=dev_local
PORT=5000
FLASK_DEBUG=true
STORAGE_PATH=storage
LOCAL_ALLOWED_DOMAIN=test.org
# postgres settings
POSTGRES_USER=<add_a_key_here>
POSTGRES_PASSWORD=<add_a_key_here>
POSTGRES_DB=nad_ch_dev
POSTGRES_HOST=postgres
POSTGRES_PORT=5432
# redis and minio settings
QUEUE_BROKER_URL=redis://redis:6379/0
QUEUE_BACKEND_URL=redis://redis:6379/0
# storage settings
MINIO_ROOT_USER=<add_a_key_here> # use the same value as S3_ACCESS_KEY
MINIO_ROOT_PASSWORD=<add_a_key_here> # use the same value as S3_SECRET_ACCESS_KEY
S3_BUCKET_NAME=nad-ch-dev-local
S3_ENDPOINT=storage:9000
S3_ACCESS_KEY=<add_a_key_here> # use the same value as MINIO_ROOT_USER
S3_SECRET_ACCESS_KEY=<add_a_key_here> # use the same value as MINIO_ROOT_PASSWORD
S3_REGION=us-east-1
LANDING_ZONE=/data/landing_zone
# login provider settings
CLOUDGOV_CLIENT_ID=<add_a_key_here>
CLOUDGOV_CLIENT_SECRET=<add_a_key_here>