File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 39
39
"django.contrib.messages" ,
40
40
"django.contrib.staticfiles" ,
41
41
'appointment.apps.AppointmentConfig' ,
42
+ 'django_q' ,
42
43
]
43
44
44
45
MIDDLEWARE = [
131
132
('es' , _ ('Spanish' )),
132
133
('fr' , _ ('French' )),
133
134
)
135
+
136
+ # Email settings
137
+ EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
138
+ EMAIL_HOST = 'smtp.gmail.com'
139
+ EMAIL_PORT = 587
140
+ EMAIL_HOST_USER = "[email protected] "
141
+ EMAIL_HOST_PASSWORD = "very-insecure-password"
142
+ EMAIL_USE_TLS = True
143
+ EMAIL_SUBJECT_PREFIX = ""
144
+ EMAIL_USE_LOCALTIME = True
145
+ SERVER_EMAIL = EMAIL_HOST_USER
146
+
147
+ ADMINS = [
148
+
149
+ ]
150
+
151
+ Q_CLUSTER = {
152
+ 'name' : 'DjangORM' ,
153
+ 'workers' : 4 ,
154
+ 'timeout' : 90 ,
155
+ 'retry' : 120 ,
156
+ 'queue_limit' : 50 ,
157
+ 'bulk' : 10 ,
158
+ 'orm' : 'default' ,
159
+ }
You can’t perform that action at this time.
0 commit comments