-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env
More file actions
34 lines (27 loc) · 867 Bytes
/
example.env
File metadata and controls
34 lines (27 loc) · 867 Bytes
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
# list of environment variables that has to be provided for each env
# name of the environment can be used then when calling script for composing environment
GITHUB_TOKEN="secret token"
ACTIVE_PROFILE="local"
SAMPLE_DATA_PROFILE="local"
DB_LOCATION="db location"
DB_DATABASE="database"
DB_USER="user"
DB_PASSWORD="password"
DB_PORT="1234"
DB_PARAMS="additional db params"
BACKEND_PORT="1234"
BACKEND_SERVER_PORT="1234"
FE_PORT="1234"
HTTP_PORT="1234"
HTTPS_PORT="1234"
BASE_URL="http://task-backend:${BACKEND_SERVER_PORT}"
JVM_PROPERTIES=""
ALLOWED_ORIGIN="http://localhost:8050"
ALLOWED_ORIGIN_HTTPS="https://localhost:8443"
ENABLE_HISTORY=true
AUTH0_ISSUER="auth0 issuer"
AUTH0_BE_CLIENT_ID="auth0 client id"
AUTH0_CLIENT_SECRET="auth0 BE client secret"
AUTH0_AUDIENCE="auth0 API audience"
AUTH0_DOMAIN="auth0 domain"
AUTH0_FE_CLIENT_ID="auth0 FE client id"