include sample email settings in .env.dist

This commit is contained in:
Thomas Steen Rasmussen 2016-05-02 22:13:47 +02:00
parent ec95879e5a
commit c5fa7ef87e

View file

@ -1,3 +1,9 @@
DATABASE_URL=postgres://username:password@host:port/database
SECRET_KEY=somethingverysecretandunique
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'