* Add TOTP MFA Support * Add Passkey MFA Support It's not impossible I missed some minor cleanup, but most things make sense and there isn't a lot of obvious duplication anymore. --------- Co-authored-by: Bruno Bernardino <me@brunobernardino.com>
17 lines
491 B
Plaintext
17 lines
491 B
Plaintext
PORT=8000
|
|
|
|
POSTGRESQL_HOST="postgresql" # docker container name or external hostname/IP
|
|
POSTGRESQL_USER="postgres"
|
|
POSTGRESQL_PASSWORD="fake"
|
|
POSTGRESQL_DBNAME="bewcloud"
|
|
POSTGRESQL_PORT=5432
|
|
POSTGRESQL_CAFILE=""
|
|
|
|
JWT_SECRET="fake"
|
|
PASSWORD_SALT="fake"
|
|
|
|
MFA_KEY="fake" # optional, if you want to enable multi-factor authentication
|
|
MFA_SALT="fake" # optional, if you want to enable multi-factor authentication
|
|
|
|
BREVO_API_KEY="fake" # optional, if you want to enable signup email verification
|