Initial bookmarks.
[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     'fnp_django_pagination',
63     'pipeline',
64     'sorl.thumbnail',
65     'honeypot',
66     'fnpdjango',
67     'django_extensions',
68     'forms_builder.forms',
69     'django_countries',
70
71     'debug_toolbar',
72
73     # allauth stuff
74     'allauth',
75     'allauth.account',
76     'allauth.socialaccount',
77     'allauth.socialaccount.providers.openid',
78     'allauth.socialaccount.providers.facebook',
79     'allauth.socialaccount.providers.google',
80     # 'allauth.socialaccount.providers.twitter',
81 ]
82
83 INSTALLED_APPS = INSTALLED_APPS_OUR + INSTALLED_APPS_CONTRIB