app-MAIL-temp/.env.example

89 lines
2.0 KiB
Plaintext
Raw Normal View History

# Server url
2019-08-17 12:26:37 +02:00
URL=http://localhost:7777
2019-12-16 18:30:17 +01:00
# If you want to enable sentry for error tracking, put your sentry dsn here.
# SENTRY_DSN=your_sentry_dsn
2019-07-22 12:14:02 +02:00
2019-12-16 18:36:59 +01:00
# apply colored log to facilitate local development
# COLOR_LOG=true
# <<< Email related settings >>>
2019-12-16 18:36:59 +01:00
# Only print email content, not sending it, for local development
# NOT_SEND_EMAIL=true
# domain used to create alias
EMAIL_DOMAIN=sl.local
2019-12-16 18:36:59 +01:00
# transactional email is sent from this email address
SUPPORT_EMAIL=support@sl.local
2019-12-16 18:36:59 +01:00
# to receive general stats.
# ADMIN_EMAIL=admin@sl.local
2019-07-22 12:14:02 +02:00
# Max number emails user can generate for free plan
MAX_NB_EMAIL_FREE_PLAN=3
2019-12-16 18:40:23 +01:00
# custom domain needs to point to these MX servers
EMAIL_SERVERS_WITH_PRIORITY=[(10, "email.hostname.")]
2019-12-16 18:40:23 +01:00
# these emails are ignored when computing stats
2019-12-16 18:40:23 +01:00
# IGNORED_EMAILS = ["my_email@domain.com"]
# the DKIM private key used to compute DKIM-Signature
DKIM_PRIVATE_KEY_PATH=local_data/dkim.key
2019-12-27 23:44:32 +01:00
# the DKIM public key used to setup custom domain DKIM
DKIM_PUBLIC_KEY_PATH=local_data/dkim.pub.key
2019-12-16 18:40:23 +01:00
# <<< END Email related settings >>>
2019-07-22 12:14:02 +02:00
# <<< Database >>>
2019-12-16 18:40:23 +01:00
# delete and recreate sqlite database, for local development
# RESET_DB=true
2019-12-16 18:40:23 +01:00
# DB Connection
2019-12-18 17:10:10 +01:00
# Local SQLite database
DB_URI=sqlite:///db.sqlite
2019-12-18 17:10:10 +01:00
# Postgres
# DB_URI=postgresql://myuser:mypassword@sl-db:5432/simplelogin
2019-12-16 18:40:23 +01:00
# <<< END Database >>>
2019-07-22 12:14:02 +02:00
# Flask
FLASK_SECRET=secret
2019-12-16 18:40:23 +01:00
# <<< AWS >>>
BUCKET=to_fill
2019-07-06 16:39:45 +02:00
AWS_ACCESS_KEY_ID=to_fill
AWS_SECRET_ACCESS_KEY=to_fill
# Cloudwatch
# ENABLE_CLOUDWATCH=true
2019-12-27 11:48:57 +01:00
# CLOUDWATCH_LOG_GROUP=local
# CLOUDWATCH_LOG_STREAM=local
2019-12-16 18:40:23 +01:00
# <<< END AWS >>>
# Paddle
PADDLE_VENDOR_ID = 123
PADDLE_MONTHLY_PRODUCT_ID = 123
PADDLE_YEARLY_PRODUCT_ID = 123
2019-12-14 19:54:33 +01:00
PADDLE_PUBLIC_KEY_PATH=local_data/paddle.key.pub
2019-07-22 12:14:02 +02:00
# OpenId key
OPENID_PRIVATE_KEY_PATH=local_data/jwtRS256.key
OPENID_PUBLIC_KEY_PATH=local_data/jwtRS256.key.pub
2019-07-06 16:39:45 +02:00
2019-07-22 12:14:02 +02:00
# Words to generate random email alias
WORDS_FILE_PATH=local_data/words.txt
2019-07-22 12:14:02 +02:00
# Github
GITHUB_CLIENT_ID=to_fill
GITHUB_CLIENT_SECRET=to_fill
# Google
GOOGLE_CLIENT_ID=to_fill
GOOGLE_CLIENT_SECRET=to_fill
# Facebook
FACEBOOK_CLIENT_ID=to_fill
FACEBOOK_CLIENT_SECRET=to_fill