Skip to content

Commit

Permalink
Update readmine
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Jun 13, 2014
1 parent 5fb17a3 commit cbc27de
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion README.rst
Expand Up @@ -50,6 +50,8 @@ Add ``djangocms_blog`` and its dependencies to INSTALLED_APPS::
'taggit',
'django_select2',
'taggit_autosuggest',
'meta',
'meta_mixin',
'djangocms_blog',
...
]
Expand All @@ -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
--------
Expand Down

0 comments on commit cbc27de

Please sign in to comment.