book filtering
[wolnelektury.git] / src / wolnelektury / settings / apps.py
1 # This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
3 #
4
5 INSTALLED_APPS_OUR = [
6     'wolnelektury',
7     # our
8     'ajaxable',
9     'annoy',
10     'api',
11     'bookmarks',
12     'catalogue',
13     'chunks',
14     'dictionary',
15     'education',
16     'experiments',
17     'infopages',
18     'lesmianator',
19     'messaging',
20     'newtagging',
21     'opds',
22     'pdcounter',
23     'pz',
24     'references',
25     'reporting',
26     'sponsors',
27     'stats',
28     'suggest',
29     'picture',
30     'social',
31     'waiter',
32     'search',
33     'oai',
34     'funding',
35     'polls',
36     'libraries',
37     'newsletter',
38     'contact',
39     'isbn',
40     'paypal',
41     'push',
42     'club',
43     'redirects',
44 ]
45
46 INSTALLED_APPS_CONTRIB = [
47     # Should be before django.contrib.admin
48     'modeltranslation',
49
50     # external
51     'django.contrib.auth',
52     'django.contrib.contenttypes',
53     'django.contrib.messages',
54     'django.contrib.sessions',
55     'django.contrib.sites',
56     'django.contrib.admin',
57     'django.contrib.admindocs',
58     'django.contrib.staticfiles',
59     'django.contrib.postgres',
60     'admin_ordering',
61     'rest_framework',
62     'django_filters',
63     'fnp_django_pagination',
64     'pipeline',
65     'sorl.thumbnail',
66     'honeypot',
67     'fnpdjango',
68     'django_extensions',
69     'forms_builder.forms',
70     'django_countries',
71
72     'debug_toolbar',
73
74     # allauth stuff
75     'allauth',
76     'allauth.account',
77     'allauth.socialaccount',
78     'allauth.socialaccount.providers.openid',
79     'allauth.socialaccount.providers.facebook',
80     'allauth.socialaccount.providers.google',
81     # 'allauth.socialaccount.providers.twitter',
82 ]
83
84 INSTALLED_APPS = INSTALLED_APPS_OUR + INSTALLED_APPS_CONTRIB