commit
dd1cc7a986
1 changed files with 38 additions and 1 deletions
39
README.rst
39
README.rst
|
@ -50,6 +50,8 @@ Add ``djangocms_blog`` and its dependencies to INSTALLED_APPS::
|
||||||
'taggit',
|
'taggit',
|
||||||
'django_select2',
|
'django_select2',
|
||||||
'taggit_autosuggest',
|
'taggit_autosuggest',
|
||||||
|
'meta',
|
||||||
|
'meta_mixin',
|
||||||
'djangocms_blog',
|
'djangocms_blog',
|
||||||
...
|
...
|
||||||
]
|
]
|
||||||
|
@ -59,7 +61,42 @@ Then sync and migrate::
|
||||||
$ python manage.py syncdb
|
$ python manage.py syncdb
|
||||||
$ python manage.py migrate
|
$ 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
|
Features
|
||||||
--------
|
--------
|
||||||
|
|
Loading…
Reference in a new issue