-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
46 lines (38 loc) · 1.23 KB
/
.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
35
36
37
38
39
40
41
42
43
44
45
46
# Tracking server
## Postgres
POSTGRES_USER=postgres
POSTGRES_DATABASE=postgres
POSTGRES_PASSWORD=postgres
## minio
AWS_ACCESS_KEY_ID=accessminio
AWS_SECRET_ACCESS_KEY=secretminio
MINIO_ROOT_USER=accessminio
MINIO_ROOT_PASSWORD=secretminio
BUCKET_NAME=mlflow-bucket
MINIO_PORT=9000
# For use through docker (CLI and front-end)
MINIO_CLIENT_URL=s3:9000
# For use without docker (CLI with conda)
# MINIO_CLIENT_URL=localhost:9000
MINIO_SSL=false
# Back end
# For use through docker (CLI and front-end)
MLFLOW_TRACKING_URI=http://mlflow_server:5000
MLFLOW_S3_ENDPOINT_URL=http://s3:9000
DAGSTER_ENDPOINT_URL=http://deeptsf_dagster:8006
GIT_PYTHON_REFRESH=quiet
# For use without docker (CLI with conda)
# MLFLOW_TRACKING_URI=http://localhost:5000
# MLFLOW_S3_ENDPOINT_URL=http://localhost:9000
# DAGSTER_ENDPOINT_URL=http://localhost:8006
# GIT_PYTHON_REFRESH=quiet
# Front end
## These environment variable cannot be set from within here. (React issues)
## Instead they should have been included as .env in the front end repo / image.
# CHOKIDAR_USEPOLLING=true
# REACT_APP_NAME=Load_Forecasting_Dashboard
# REACT_APP_AUTH=False
# REACT_APP_MLFLOW=http://mlflow_server:5000
# DAGSTER_ENDPOINT_URL=http://deeptsf_dagster:8006
# Security
USE_KEYCLOAK=False