include sample email settings in .env.dist
This commit is contained in:
parent
ec95879e5a
commit
c5fa7ef87e
|
@ -1,3 +1,9 @@
|
||||||
DATABASE_URL=postgres://username:password@host:port/database
|
DATABASE_URL=postgres://username:password@host:port/database
|
||||||
SECRET_KEY=somethingverysecretandunique
|
SECRET_KEY=somethingverysecretandunique
|
||||||
ALLOWED_HOSTS=a,seperated,list,without,spaces
|
ALLOWED_HOSTS=a,seperated,list,without,spaces
|
||||||
|
EMAIL_HOST='mailhost.example.com'
|
||||||
|
EMAIL_PORT=587
|
||||||
|
EMAIL_HOST_USER='mymailuser'
|
||||||
|
EMAIL_HOST_PASSWORD='mymailpassword'
|
||||||
|
EMAIL_USE_TLS=True
|
||||||
|
EMAIL_FROM='noreply@example.com'
|
||||||
|
|
Loading…
Reference in a new issue