diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | fossee_anime/local_settings.py | 7 | ||||
-rw-r--r-- | fossee_manim/local_settings.py | 9 |
3 files changed, 17 insertions, 1 deletions
@@ -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' |