33 lines
622 B
Bash
33 lines
622 B
Bash
|
|
|
|
ELASTIC_URI=http://elasticsearch:9200
|
|
|
|
DEFAULT_USERS=[["user@gmail.com", "1234", "user"], ["admin@gmail.com", "1234", "admin"]]
|
|
|
|
# DEFAULT_USERS is list of lists, each nested list respectively contains email, password and role
|
|
# e.g. [["user@gmail.com", "1234", "user"], ["admin@gmail.com", "1234", "admin"]]
|
|
# leave empty if you don't wish to seed users
|
|
|
|
|
|
#-----------not used yet----------------
|
|
|
|
#JWT encryption secret:
|
|
SECRET=1234
|
|
|
|
|
|
LLM_PAYLOAD=16384
|
|
CHUNK_SIZE=1536
|
|
|
|
|
|
#A flag for using Loki for logging. To deactivate comment it out
|
|
USE_LOKI_LOGGER=1
|
|
|
|
|
|
|
|
|
|
BOT_ROOT_PATH=/
|
|
|
|
BACKEND_INTERNAL_URL=http://backend:5000
|
|
|
|
|