Example #1
0
INSTALLED_APPS = add_enabled_addons(
    SHUUP_ENABLED_ADDONS_FILE,
    [
        # django
        'django.contrib.admin',
        'django.contrib.auth',
        'django.contrib.contenttypes',
        'django.contrib.messages',
        'django.contrib.sessions',
        'django.contrib.staticfiles',
        # external apps that needs to be loaded before Shuup
        'easy_thumbnails',
        # shuup themes
        'shuup.themes.classic_gray',
        # shuup
        'shuup.core',
        'shuup.admin',
        'shuup.api',
        'shuup.addons',
        'shuup.default_tax',
        'shuup.front',
        'shuup.front.apps.auth',
        'shuup.front.apps.carousel',
        'shuup.front.apps.customer_information',
        'shuup.front.apps.personal_order_history',
        'shuup.front.apps.saved_carts',
        'shuup.front.apps.registration',
        'shuup.front.apps.simple_order_notification',
        'shuup.front.apps.simple_search',
        'shuup.front.apps.recently_viewed_products',
        'shuup.notify',
        'shuup.simple_cms',
        'shuup.customer_group_pricing',
        'shuup.campaigns',
        'shuup.simple_supplier',
        'shuup.order_printouts',
        'shuup.testing',
        'shuup.utils',
        'shuup.xtheme',
        'shuup.reports',
        'shuup.default_reports',
        'shuup.regions',
        'shuup.importer',
        'shuup.default_importer',

        # external apps
        'bootstrap3',
        'django_countries',
        'django_jinja',
        'django_filters',
        'filer',
        'registration',
        'rest_framework',
        'rest_framework_swagger'
    ])
Example #2
0
INSTALLED_APPS = add_enabled_addons(SHUUP_ENABLED_ADDONS_FILE, [
    # django
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.messages',
    'django.contrib.sessions',
    'django.contrib.staticfiles',
    # shuup themes
    'shuup.themes.classic_gray',
    # shuup
    'shuup.addons',
    'shuup.admin',
    'shuup.api',
    'shuup.core',
    'shuup.default_tax',
    'shuup.front',
    'shuup.front.apps.auth',
    'shuup.front.apps.customer_information',
    'shuup.front.apps.personal_order_history',
    'shuup.front.apps.saved_carts',
    'shuup.front.apps.registration',
    'shuup.front.apps.simple_order_notification',
    'shuup.front.apps.simple_search',
    'shuup.notify',
    'shuup.simple_cms',
    'shuup.customer_group_pricing',
    'shuup.campaigns',
    'shuup.simple_supplier',
    'shuup.order_printouts',
    'shuup.testing',
    'shuup.utils',
    'shuup.xtheme',
    # external apps
    'bootstrap3',
    'django_jinja',
    'easy_thumbnails',
    'filer',
    'registration',
    'rest_framework',
])
Example #3
0
INSTALLED_APPS = add_enabled_addons(
    SHUUP_ENABLED_ADDONS_FILE,
    [
        # django
        "django.contrib.admin",
        "django.contrib.auth",
        "django.contrib.contenttypes",
        "django.contrib.messages",
        "django.contrib.sessions",
        "django.contrib.staticfiles",
        # external apps that needs to be loaded before Shuup
        "easy_thumbnails",
        # shuup themes
        "shuup.themes.classic_gray",
        # shuup
        "shuup.core",
        "shuup.admin",
        "shuup.addons",
        "shuup.default_tax",
        "shuup.front",
        "shuup.front.apps.auth",
        "shuup.front.apps.carousel",
        "shuup.front.apps.customer_information",
        "shuup.front.apps.personal_order_history",
        "shuup.front.apps.saved_carts",
        "shuup.front.apps.registration",
        "shuup.front.apps.simple_order_notification",
        "shuup.front.apps.simple_search",
        "shuup.front.apps.recently_viewed_products",
        "shuup.notify",
        "shuup.simple_cms",
        "shuup.customer_group_pricing",
        "shuup.campaigns",
        "shuup.simple_supplier",
        "shuup.order_printouts",
        "shuup.utils",
        "shuup.xtheme",
        "shuup.reports",
        "shuup.default_reports",
        "shuup.regions",
        "shuup.importer",
        "shuup.default_importer",
        "shuup.gdpr",
        "shuup.tasks",
        "shuup.discounts",
        # external apps
        "bootstrap3",
        "django_countries",
        "django_jinja",
        "django_filters",
        "filer",
        "reversion",
        "registration",
        "rest_framework",
    ],
)
Example #4
0
]

DJANGO_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'django.contrib.flatpages',
    'django.contrib.sitemaps',
    'django.contrib.humanize',
]

INSTALLED_APPS = add_enabled_addons(SHUUP_ENABLED_ADDONS_FILE, [
] + THIRD_PARTY_APPS + DJANGO_APPS + SHUUP_APPS)

MIDDLEWARE_CLASSES = [
    'django.middleware.gzip.GZipMiddleware',
    'django.middleware.http.ConditionalGetMiddleware',

    'debug_toolbar.middleware.DebugToolbarMiddleware',

    'django.middleware.cache.UpdateCacheMiddleware',
    'django.contrib.sites.middleware.CurrentSiteMiddleware',
    'django.middleware.cache.FetchFromCacheMiddleware',
    'django.contrib.admindocs.middleware.XViewMiddleware',

    'django.middleware.security.SecurityMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.locale.LocaleMiddleware',
Example #5
0
INSTALLED_APPS = add_enabled_addons(SHUUP_ENABLED_ADDONS_FILE, [
    # django
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.messages',
    'django.contrib.sessions',
    'django.contrib.staticfiles',
    # shuup themes
    'shuup.themes.classic_gray',
    # shuup
    'shuup.addons',
    'shuup.admin',
    'shuup.api',
    'shuup.core',
    'shuup.default_tax',
    'shuup.front',
    'shuup.front.apps.auth',
    'shuup.front.apps.customer_information',
    'shuup.front.apps.personal_order_history',
    'shuup.front.apps.registration',
    'shuup.front.apps.simple_order_notification',
    'shuup.front.apps.simple_search',
    'shuup.notify',
    'shuup.simple_cms',
    'shuup.customer_group_pricing',
    'shuup.campaigns',
    'shuup.simple_supplier',
    'shuup.order_printouts',
    'shuup.testing',
    'shuup.utils',
    'shuup.xtheme',
    # external apps
    'bootstrap3',
    'django_jinja',
    'easy_thumbnails',
    'filer',
    'registration',
    'rest_framework',
])
Example #6
0
INSTALLED_APPS = add_enabled_addons(SHUUP_ENABLED_ADDONS_FILE, [
    # django
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.messages',
    'django.contrib.sessions',
    'django.contrib.staticfiles',
    # external apps that needs to be loaded before Shuup
    'easy_thumbnails',
    # shuup themes
    'shuup.themes.classic_gray',
    # shuup
    'shuup.core',
    'shuup.admin',
    'shuup.api',
    'shuup.addons',
    'shuup.default_tax',
    'shuup.front',
    'shuup.front.apps.auth',
    'shuup.front.apps.carousel',
    'shuup.front.apps.customer_information',
    'shuup.front.apps.personal_order_history',
    'shuup.front.apps.saved_carts',
    'shuup.front.apps.registration',
    'shuup.front.apps.simple_order_notification',
    'shuup.front.apps.simple_search',
    'shuup.front.apps.recently_viewed_products',
    'shuup.notify',
    'shuup.simple_cms',
    'shuup.customer_group_pricing',
    'shuup.campaigns',
    'shuup.simple_supplier',
    'shuup.order_printouts',
    'shuup.utils',
    'shuup.xtheme',
    'shuup.reports',
    'shuup.default_reports',
    'shuup.regions',
    'shuup.importer',
    'shuup.default_importer',
    'shuup.gdpr',
    'shuup.tasks',
    'shuup.discounts',

    # external apps
    'bootstrap3',
    'django_countries',
    'django_jinja',
    'django_filters',
    'filer',
    'reversion',
    'registration',
    'rest_framework',
    'rest_framework_swagger'
])