Update readmine

This commit is contained in:
Iacopo Spalletti 2014-06-12 18:23:24 +02:00
parent 5fb17a3056
commit cbc27dee4e
1 changed files with 39 additions and 1 deletions

View File

@ -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
--------