summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--fossee_anime/local_settings.py7
-rw-r--r--fossee_manim/local_settings.py9
3 files changed, 17 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index ec6dd19..0ed80ef 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,7 +18,7 @@ pip-delete-this-directory.txt
# Django stuff:
*.log
-local_settings.py
+# local_settings.py
# PyBuilder
target/
diff --git a/fossee_anime/local_settings.py b/fossee_anime/local_settings.py
new file mode 100644
index 0000000..88c3471
--- /dev/null
+++ b/fossee_anime/local_settings.py
@@ -0,0 +1,7 @@
+EMAIL_HOST = 'your smtp host name'
+EMAIL_PORT = 'PORT Number'
+EMAIL_HOST_USER = 'your username'
+EMAIL_HOST_PASSWORD = 'your password'
+EMAIL_USE_TLS = True
+SENDER_EMAIL = 'your email address'
+SECRET_KEY_SETTINGS = 'KEY' \ No newline at end of file
diff --git a/fossee_manim/local_settings.py b/fossee_manim/local_settings.py
new file mode 100644
index 0000000..3a98426
--- /dev/null
+++ b/fossee_manim/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
+SENDER_EMAIL = 'your email address'