28 lines
947 B
Bash
28 lines
947 B
Bash
# https://github.com/teableio/teable/blob/develop/dockers/examples/standalone/.env
|
|
# https://help.teable.io/en/deploy/env
|
|
|
|
TIMEZONE=UTC
|
|
TEABLE_PORT=8890
|
|
TEABLE_DATA=/data/teable
|
|
|
|
# Postgres
|
|
POSTGRES_HOST=10.10.10.10
|
|
POSTGRES_PORT=5432
|
|
POSTGRES_DB=teable
|
|
POSTGRES_USER=dbuser_teable
|
|
POSTGRES_PASSWORD=DBUser.Teable
|
|
|
|
# App
|
|
PUBLIC_ORIGIN=http://127.0.0.1:${TEABLE_PORT}
|
|
PRISMA_DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}
|
|
PUBLIC_DATABASE_PROXY=127.0.0.1:5432
|
|
|
|
# Need to support sending emails to enable the following configurations
|
|
# You need to modify the configuration according to the actual situation, otherwise it will not be able to send emails correctly.
|
|
#BACKEND_MAIL_HOST=smtp.teable.io
|
|
#BACKEND_MAIL_PORT=465
|
|
#BACKEND_MAIL_SECURE=true
|
|
#BACKEND_MAIL_SENDER=noreply.teable.io
|
|
#BACKEND_MAIL_SENDER_NAME=Teable
|
|
#BACKEND_MAIL_AUTH_USER=username
|
|
#BACKEND_MAIL_AUTH_PASS=password |