diff --git a/README.rst b/README.rst index 8cf2cd8..754aef5 100644 --- a/README.rst +++ b/README.rst @@ -50,6 +50,8 @@ Add ``djangocms_blog`` and its dependencies to INSTALLED_APPS:: 'taggit', 'django_select2', 'taggit_autosuggest', + 'meta', + 'meta_mixin', 'djangocms_blog', ... ] @@ -59,7 +61,42 @@ Then sync and migrate:: $ python manage.py syncdb $ python manage.py migrate -For ``filer`` installationand configuration, please refer to http://django-filer.readthedocs.org +External applications configuration ++++++++++++++++++++++++++++++++++++ + +Dependency applications may need configuration to work properly. + +Please, refer to each application documentation on details. + +* django-filer: http://django-filer.readthedocs.org +* django-meta: https://github.com/nephila/django-meta#installation +* django-taggit-autosuggest: https://bitbucket.org/fabian/django-taggit-autosuggest + +Quick hint +++++++++++ + +The following are minimal defaults to get the blog running; they may not be +suited for your deployment. + +* Add the following settings to your project:: + + SOUTH_MIGRATION_MODULES = { + 'taggit': 'taggit.south_migrations', + } + THUMBNAIL_PROCESSORS = ( + 'easy_thumbnails.processors.colorspace', + 'easy_thumbnails.processors.autocrop', + 'filer.thumbnail_processors.scale_and_crop_with_subject_location', + 'easy_thumbnails.processors.filters', + ) + META_SITE_PROTOCOL = 'http' + META_USE_SITES = True + +* Add the following to your ``urls.py``:: + + (r'^taggit_autosuggest/', include('taggit_autosuggest.urls')), + + Features --------