From cbc27dee4e5ab37c4232a29c634bee04d8fdf0ce Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Thu, 12 Jun 2014 18:23:24 +0200 Subject: [PATCH] Update readmine --- README.rst | 40 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 8cf2cd8..2e3ad77 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,43 @@ 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 --------