Banner groups.
[wolnelektury.git] / src / wolnelektury / settings / apps.py
1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
3 #
4 # These are the ones we should test.
5 INSTALLED_APPS_OUR = [
6     'wolnelektury',
7     # our
8     'ajaxable',
9     'api',
10     'catalogue',
11     'chunks',
12     'dictionary',
13     'infopages',
14     'lesmianator',
15     'newtagging',
16     'opds',
17     'pdcounter',
18     'reporting',
19     'sponsors',
20     'stats',
21     'suggest',
22     'picture',
23     'social',
24     'waiter',
25     'search',
26     'oai',
27     'funding',
28     'polls',
29     'libraries',
30     'newsletter',
31     'contact',
32     'isbn',
33     'paypal',
34     'push',
35 ]
36
37 INSTALLED_APPS_CONTRIB = [
38     # Should be before django.contrib.admin
39     'modeltranslation',
40
41     # external
42     'django.contrib.auth',
43     'django.contrib.contenttypes',
44     'django.contrib.sessions',
45     'django.contrib.sites',
46     'django.contrib.admin',
47     'django.contrib.admindocs',
48     'django.contrib.staticfiles',
49     'admin_ordering',
50     'rest_framework',
51     'fnp_django_pagination',
52     'pipeline',
53     'piwik',
54     'sorl.thumbnail',
55     'kombu.transport.django',
56     'honeypot',
57     'fnpdjango',
58     'getpaid',
59     'getpaid.backends.payu',
60     'ssify',
61     'django_extensions',
62     'raven.contrib.django.raven_compat',
63     'club.apps.ClubConfig',
64
65     # allauth stuff
66     'allauth',
67     'allauth.account',
68     'allauth.socialaccount',
69     'allauth.socialaccount.providers.openid',
70     'allauth.socialaccount.providers.facebook',
71     'allauth.socialaccount.providers.google',
72     # 'allauth.socialaccount.providers.twitter',
73 ]
74
75 INSTALLED_APPS = INSTALLED_APPS_OUR + INSTALLED_APPS_CONTRIB