# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
-#
-# These are the ones we should test.
+
+from machina import get_apps as get_machina_apps
+
INSTALLED_APPS_OUR = [
'wolnelektury',
# our
'pipeline',
'piwik',
'sorl.thumbnail',
- 'kombu.transport.django',
'honeypot',
'fnpdjango',
'getpaid',
'getpaid.backends.payu',
- 'ssify',
'django_extensions',
'raven.contrib.django.raven_compat',
'club.apps.ClubConfig',
+ 'debug_toolbar',
+
# allauth stuff
'allauth',
'allauth.account',
'allauth.socialaccount.providers.facebook',
'allauth.socialaccount.providers.google',
# 'allauth.socialaccount.providers.twitter',
-]
+
+ # Machina related apps:
+ 'mptt',
+ 'haystack',
+ 'widget_tweaks',
+] + get_machina_apps()
INSTALLED_APPS = INSTALLED_APPS_OUR + INSTALLED_APPS_CONTRIB