summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshen2017-05-19 15:54:41 +0530
committerAkshen2017-05-19 15:55:26 +0530
commit97d230fba0345989ab560160aaa1e56ab32811f3 (patch)
tree50f58790f555a17a13f5607342ecc44a3cf4b5ea
parentcc8eaf37476ad2f8c156785ec5f2d695a94237b4 (diff)
downloadworkshop_booking-97d230fba0345989ab560160aaa1e56ab32811f3.tar.gz
workshop_booking-97d230fba0345989ab560160aaa1e56ab32811f3.tar.bz2
workshop_booking-97d230fba0345989ab560160aaa1e56ab32811f3.zip
Adds local_setting.py
-rw-r--r--.gitignore2
-rw-r--r--local_settings.py9
2 files changed, 10 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 3909759..6aa13cc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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