Created celery.py and added Celery broker line in settings.py
@@ -0,0 +1,9 @@
+from __future__ import absolute_import, unicode_literals
+from celery import Celery
+
+app = Celery('Misago',
+ broker='redis://',
+ )
+if __name__ == '__main__':
+ app.start()
@@ -416,6 +416,7 @@ MISAGO_PROFILE_FIELDS = [
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
+CELERY_BROKER_URL = ""
# Display debug toolbar if IN_MISAGO_DOCKER enviroment var is set to "1"