-
Notifications
You must be signed in to change notification settings - Fork 11
/
.env.template
48 lines (40 loc) · 1.73 KB
/
.env.template
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
###############################################################################################
# BLOOM VARIABLES
###############################################################################################
# these values are used in the local docker env. You can use "localhost" hostname
# if you run the application without docker
POSTGRES_HOSTNAME=postgres_bloom
POSTGRES_USER=bloom_user
POSTGRES_PASSWORD=bloom
POSTGRES_DB=bloom_db
POSTGRES_PORT=5432
API_PORT=8000
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=bloom
REDIS_CACHE_EXPIRATION=900
SPIRE_TOKEN=
SLACK_URL=
# Folder where data are stored
DATA_FOLDER=
LOGGING_LEVEL=INFO
# API
API_KEY=
###############################################################################################
# DOCKER SPECIFIC VARIABLES
###############################################################################################
# IMAGE_PYTHON (Optional)
# Default is set in docker-compose.yaml and/or in dockerfile directly ARG IMAGE_PYTHON
# Changing this value will change the version python image used to build Docker image of Bloom
#IMAGE_PYTHON=python:3.10-slim-bullseye
# POETRY_VERSION (Optional)
# Default is set in docker-compose.yaml and/or in dockerfile directly ARG POETRY_VERSION
# Changing this value will change the version poetry used to build Docker image of Bloom
#POETRY_VERSION=1.8.1
###############################################################################################
# STREAMLIT SPECIFIC VARIABLES
###############################################################################################
# STREAMLIT_SERVER_ADDRESS (Optional)
# Default is set in docker-compose.yaml
# Changing this value will change the listening addess of streamlit server
#STREAMLIT_SERVER_ADDRESS=0.0.0.0