-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
34 lines (27 loc) · 994 Bytes
/
.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
APP_ENV=local
INFRA_SERVICE=MAIN
DJANGO_SETTINGS_MODULE=config.settings.local
SECRET_KEY=this_is_an_example_use_a_proper_key_in_production
DATABASE_URL=postgres://postgres:postgres@postgres/postgres
IDENTITY_REDIS_URL=redis://redis:6379
IDENTITY_REDIS=redis://redis:6379
ALLOWED_HOSTS=localhost
DEBUGPY_ENABLED=True
# Vite
VITE_DEV=True
VITE_DEV_SERVER_URL=http://localhost:5173
# Sentry
SENTRY_DSN=
# authbroker config
AUTHBROKER_URL=speak-to-webops-team-for-access
AUTHBROKER_CLIENT_ID=speak-to-webops-team-for-access
AUTHBROKER_CLIENT_SECRET=speak-to-webops-team-for-access
AUTHBROKER_STAFF_SSO_SCOPE=any-additional-scope-values
AUTHBROKER_ANONYMOUS_PATHS=(Tuple/list of paths that should be unprotected)
AUTHBROKER_ANONYMOUS_URL_NAMES=(list of url names that should be unprotected)
MAIN_HAWK_ID=xxx
MAIN_HAWK_KEY=xxx
# S3 configs
S3_LOCAL_ENDPOINT_URL=http://localstack:4566
DATA_FLOW_UPLOADS_BUCKET=identity.local
DATA_FLOW_UPLOADS_BUCKET_PATH="data-flow/exports/local-development"