ad0ff1592352142407b1c3ab317b6505d18940fe
[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
5 INSTALLED_APPS_OUR = [
6     'wolnelektury',
7     # our
8     'ajaxable',
9     'annoy',
10     'api',
11     'catalogue',
12     'chunks',
13     'dictionary',
14     'experiments',
15     'infopages',
16     'lesmianator',
17     'messaging',
18     'newtagging',
19     'opds',
20     'pdcounter',
21     'pz',
22     'references',
23     'reporting',
24     'sponsors',
25     'stats',
26     'suggest',
27     'picture',
28     'social',
29     'waiter',
30     'search',
31     'oai',
32     'funding',
33     'polls',
34     'libraries',
35     'newsletter',
36     'contact',
37     'isbn',
38     'paypal',
39     'push',
40     'club',
41     'redirects',
42 ]
43
44 INSTALLED_APPS_CONTRIB = [
45     # Should be before django.contrib.admin
46     'modeltranslation',
47
48     # external
49     'django.contrib.auth',
50     'django.contrib.contenttypes',
51     'django.contrib.messages',
52     'django.contrib.sessions',
53     'django.contrib.sites',
54     'django.contrib.admin',
55     'django.contrib.admindocs',
56     'django.contrib.staticfiles',
57     'admin_ordering',
58     'rest_framework',
59     'fnp_django_pagination',
60     'pipeline',
61     'sorl.thumbnail',
62     'honeypot',
63     'fnpdjango',
64     'django_extensions',
65     'forms_builder.forms',
66     'django_countries',
67
68     'debug_toolbar',
69
70     # allauth stuff
71     'allauth',
72     'allauth.account',
73     'allauth.socialaccount',
74     'allauth.socialaccount.providers.openid',
75     'allauth.socialaccount.providers.facebook',
76     'allauth.socialaccount.providers.google',
77     # 'allauth.socialaccount.providers.twitter',
78 ]
79
80 INSTALLED_APPS = INSTALLED_APPS_OUR + INSTALLED_APPS_CONTRIB