2024-03-16 08:40:24 +00:00
|
|
|
PORT=8000
|
|
|
|
|
|
2024-04-09 12:22:05 +00:00
|
|
|
POSTGRESQL_HOST="postgresql" # docker container name or external hostname/IP
|
2024-03-16 08:40:24 +00:00
|
|
|
POSTGRESQL_USER="postgres"
|
|
|
|
|
POSTGRESQL_PASSWORD="fake"
|
2024-03-18 08:16:30 +00:00
|
|
|
POSTGRESQL_DBNAME="bewcloud"
|
2024-03-16 08:40:24 +00:00
|
|
|
POSTGRESQL_PORT=5432
|
|
|
|
|
POSTGRESQL_CAFILE=""
|
|
|
|
|
|
|
|
|
|
JWT_SECRET="fake"
|
|
|
|
|
PASSWORD_SALT="fake"
|
|
|
|
|
|
2025-05-29 16:30:28 +00:00
|
|
|
MFA_KEY="fake" # optional, if you want to enable multi-factor authentication
|
|
|
|
|
MFA_SALT="fake" # optional, if you want to enable multi-factor authentication
|
|
|
|
|
|
2025-06-05 17:10:40 +00:00
|
|
|
OIDC_CLIENT_ID="fake" # optional, if you want to enable SSO (Single Sign-On)
|
|
|
|
|
OIDC_CLIENT_SECRET="fake" # optional, if you want to enable SSO (Single Sign-On)
|
|
|
|
|
|
2025-12-20 11:50:15 +00:00
|
|
|
#SMTP_USERNAME="" # optional, if you want to use signup email verification or multi-factor with an email service requiring authentication
|
|
|
|
|
#SMTP_PASSWORD="" # optional, if you want to use signup email verification or multi-factor with an email service requiring authentication
|