Skip to content

Instantly share code, notes, and snippets.

@g3rd
Created October 15, 2014 13:31
Show Gist options
  • Save g3rd/a15f23f37e782f5542f6 to your computer and use it in GitHub Desktop.
Save g3rd/a15f23f37e782f5542f6 to your computer and use it in GitHub Desktop.
INSTALLED_APPS = (
'djangocms_text_ckeditor',
'djangocms_admin_style',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.admin',
'django.contrib.sites',
'django.contrib.sitemaps',
'django.contrib.staticfiles',
'django.contrib.messages',
'django_extensions',
'cms',
'mptt',
'menus',
'sekizai',
'filer',
'easy_thumbnails',
'djangocms_style',
'djangocms_file',
'djangocms_flash',
'djangocms_googlemap',
'djangocms_inherit',
'djangocms_link',
'djangocms_picture',
'djangocms_teaser',
'djangocms_video',
'djangocms_snippet',
'reversion',
'polymorphic',
'parler',
'site_settings',
'cmsplugin_sections',
'cmsplugin_smart_sections',
'cmsplugin_slides',
'cmsplugin_filer_file',
'cmsplugin_filer_folder',
'cmsplugin_filer_image',
'cmsplugin_filer_teaser',
'cmsplugin_filer_video',
)
MIGRATION_MODULES = {
# Here until Django-CMS is at version 3.1
'cms': 'cms.migrations_django',
'menus': 'menus.migrations_django',
'djangocms_text_ckeditor': 'djangocms_text_ckeditor.migrations_django',
'djangocms_style': 'djangocms_style.migrations_django',
'djangocms_file': 'djangocms_file.migrations_django',
'djangocms_flash': 'djangocms_flash.migrations_django',
'djangocms_googlemap': 'djangocms_googlemap.migrations_django',
'djangocms_inherit': 'djangocms_inherit.migrations_django',
'djangocms_link': 'djangocms_link.migrations_django',
'djangocms_picture': 'djangocms_picture.migrations_django',
'djangocms_teaser': 'djangocms_teaser.migrations_django',
'djangocms_video': 'djangocms_video.migrations_django',
'djangocms_snippet': 'djangocms_snippet.migrations_django',
'cmsplugin_sections': 'cmsplugin_sections.migrations_django',
# Here until filter 1.0
'filer': 'filer.migrations_django',
'cmsplugin_filer_file': 'cmsplugin_filer_file.migrations_django',
'cmsplugin_filer_folder': 'cmsplugin_filer_folder.migrations_django',
'cmsplugin_filer_image': 'cmsplugin_filer_image.migrations_django',
'cmsplugin_filer_teaser': 'cmsplugin_filer_teaser.migrations_django',
'cmsplugin_filer_video': 'cmsplugin_filer_video.migrations_django',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment