-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env
60 lines (46 loc) · 1.37 KB
/
.env
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
49
50
51
52
53
54
55
56
57
58
59
60
DEBUG=false
TERM=xterm
STACK_NAME=dev
DOMAIN=localhost
PROJECT_NAME=zillion_web
COMPOSE_PROJECT_NAME=zillion-web
DOCKER_IMAGE_BACKEND=backend
DOCKER_IMAGE_FRONTEND=frontend
# You should override this if you want CORS to be more restrictive!
BACKEND_CORS_ORIGINS=["*"]
ROLLBAR_ENABLED=false
ROLLBAR_ENV=dev-zillion-web
# Currently only honored for new account creation
EMAILS_ENABLED=False
USERS_OPEN_REGISTRATION=False
# Where the Zillion config will sit inside the container
ZILLION_CONFIG=/app/zillion_config.yaml
# ZILLION_OPENAI_API_KEY=
# ZILLION_OPENAI_MODEL=gpt-3.5-turbo
# ZILLION_QDRANT_HOST=qdrant
# Optional file listing initial warehouses to create on first startup
INITIAL_WAREHOUSES_FILE=/app/initial_warehouses.json
# These are necessary to support the ChatGPT plugin integration
# PLUGIN_TOKEN=
# PLUGIN_WAREHOUSE_ID=
# PLUGIN_EMAIL=
# PLUGIN_LEGAL_INFO=
# Optional command to run at the start of prestart.sh
PRE_PRESTART_CMD=
# These need to be set in your environment, or here if you aren't
# putting this into a public repo...
# SECRET_KEY=
# FIRST_SUPERUSER=
# FIRST_SUPERUSER_PASSWORD=
# SMTP_TLS=
# SMTP_PORT=
# SMTP_HOST=
# SMTP_USER=
# SMTP_PASSWORD=
# SQLALCHEMY_DATABASE_URI=
# Also set these if you are using a postgres container for your db
# POSTGRES_SERVER=
# POSTGRES_USER=
# POSTGRES_PASSWORD=
# POSTGRES_DB=