mirror of
https://github.com/simple-login/app.git
synced 2025-02-23 23:34:05 +08:00
add info for each param in .env.example
This commit is contained in:
parent
e5079e48da
commit
6f6ea36143
1 changed files with 8 additions and 4 deletions
12
.env.example
12
.env.example
|
@ -4,21 +4,25 @@ URL=http://localhost:7777
|
||||||
# Enable sentry
|
# Enable sentry
|
||||||
ENABLE_SENTRY=true
|
ENABLE_SENTRY=true
|
||||||
|
|
||||||
# DEBUG options
|
# apply colored log
|
||||||
RESET_DB=true
|
|
||||||
COLOR_LOG=true
|
COLOR_LOG=true
|
||||||
|
|
||||||
# Email related settings
|
# <<< Email related settings >>>
|
||||||
# Only print email content, not sending it
|
# Only print email content, not sending it
|
||||||
NOT_SEND_EMAIL=true
|
NOT_SEND_EMAIL=true
|
||||||
|
# domain used to create alias
|
||||||
EMAIL_DOMAIN=sl.local
|
EMAIL_DOMAIN=sl.local
|
||||||
|
# transactional email is sent from this email address
|
||||||
SUPPORT_EMAIL=support@sl.local
|
SUPPORT_EMAIL=support@sl.local
|
||||||
|
# to send general stats
|
||||||
ADMIN_EMAIL=admin@sl.local
|
ADMIN_EMAIL=admin@sl.local
|
||||||
# Max number emails user can generate for free plan
|
# Max number emails user can generate for free plan
|
||||||
MAX_NB_EMAIL_FREE_PLAN=3
|
MAX_NB_EMAIL_FREE_PLAN=3
|
||||||
|
# custom domain needs to point to these MX servers
|
||||||
EMAIL_SERVERS_WITH_PRIORITY=[(10, "email.hostname.")]
|
EMAIL_SERVERS_WITH_PRIORITY=[(10, "email.hostname.")]
|
||||||
|
|
||||||
# Database
|
# <<< Database >>>
|
||||||
|
# delete and recreate sqlite database
|
||||||
RESET_DB=true
|
RESET_DB=true
|
||||||
DB_URI=sqlite:///db.sqlite
|
DB_URI=sqlite:///db.sqlite
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue