We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07e8d55 commit e7f64f3Copy full SHA for e7f64f3
pythonkc_site/settings.py
@@ -158,6 +158,13 @@
158
CONTACT_EMAIL_FROM = 'noreply@pythonkc.com'
159
CONTACT_EMAIL_TO = ['pythonkc@gmail.com']
160
161
+EMAIL_HOST = "smtp.gmail.com"
162
+EMAIL_PORT = 587
163
+EMAIL_USE_TLS = True
164
+EMAIL_HOST_USER = os.environ["EMAIL_HOST_USER"]
165
+EMAIL_HOST_PASSWORD = os.environ["EMAIL_HOST_PASSWORD"]
166
+MEETUP_API_KEY = os.environ["MEETUP_API_KEY"]
167
+
168
try:
169
from local_settings import *
170
except ImportError:
@@ -183,9 +190,3 @@
183
190
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
184
191
}
185
192
186
-
187
188
-try:
189
- from private_settings import *
-except ImportError:
- pass
0 commit comments