From 344db8d998b6bee75822bc708354e57abe2198af Mon Sep 17 00:00:00 2001 From: Joachim Lusiardi Date: Tue, 19 Apr 2016 08:19:31 +0200 Subject: [PATCH] add example config file --- app/config/email.py.example | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 app/config/email.py.example diff --git a/app/config/email.py.example b/app/config/email.py.example new file mode 100644 index 0000000..0b968c8 --- /dev/null +++ b/app/config/email.py.example @@ -0,0 +1,6 @@ +MAIL_SERVER = 'smtp.gmail.com' +MAIL_PORT = 465 +MAIL_USE_TLS = False +MAIL_USE_SSL = True +MAIL_USERNAME = 'your-gmail-username' +MAIL_PASSWORD = 'your-gmail-password' \ No newline at end of file