diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | local_settings.py | 9 |
2 files changed, 10 insertions, 1 deletions
@@ -52,7 +52,7 @@ coverage.xml # Django stuff: *.log -local_settings.py + # Flask stuff: instance/ diff --git a/local_settings.py b/local_settings.py new file mode 100644 index 0000000..8251c89 --- /dev/null +++ b/local_settings.py @@ -0,0 +1,9 @@ +#This file contains all information related to admin credentials for email, +# db etc. + + +EMAIL_HOST = 'your smtp host name' +EMAIL_PORT = 'PORT Number' +EMAIL_HOST_USER = 'your username' +EMAIL_HOST_PASSWORD = 'your password' +EMAIL_USE_TLS = True |