Update README
This commit is contained in:
parent
cd7fa6d96a
commit
71b7033948
2 changed files with 4 additions and 46 deletions
39
README.rst
39
README.rst
|
|
@ -34,14 +34,12 @@ django CMS blog application - Support for multilingual posts, placeholders, soci
|
||||||
|
|
||||||
Supported Django versions:
|
Supported Django versions:
|
||||||
|
|
||||||
* Django 1.6
|
|
||||||
* Django 1.7
|
|
||||||
* Django 1.8
|
* Django 1.8
|
||||||
* Django 1.9
|
* Django 1.9
|
||||||
|
|
||||||
Supported django CMS versions:
|
Supported django CMS versions:
|
||||||
|
|
||||||
* django CMS 3.x
|
* django CMS 3.2+
|
||||||
|
|
||||||
.. warning:: Version 0.8 will be the last one supporting Python 2.6, Python 3.3,
|
.. warning:: Version 0.8 will be the last one supporting Python 2.6, Python 3.3,
|
||||||
Django<1.8 and django CMS<3.2.
|
Django<1.8 and django CMS<3.2.
|
||||||
|
|
@ -84,10 +82,6 @@ Install djangocms-blog::
|
||||||
|
|
||||||
pip install djangocms-blog
|
pip install djangocms-blog
|
||||||
|
|
||||||
or -when installing in Django 1.6/1.7::
|
|
||||||
|
|
||||||
pip install djangocms-blog[admin-enhancer]
|
|
||||||
|
|
||||||
Add ``djangocms_blog`` and its dependencies to INSTALLED_APPS::
|
Add ``djangocms_blog`` and its dependencies to INSTALLED_APPS::
|
||||||
|
|
||||||
INSTALLED_APPS = [
|
INSTALLED_APPS = [
|
||||||
|
|
@ -104,18 +98,9 @@ Add ``djangocms_blog`` and its dependencies to INSTALLED_APPS::
|
||||||
...
|
...
|
||||||
]
|
]
|
||||||
|
|
||||||
If you installed the **admin-enhancer** variant, add ``admin_enhancer`` to ``INSTALLED_APPS``::
|
|
||||||
|
|
||||||
INSTALLED_APPS = [
|
Then migrate::
|
||||||
...
|
|
||||||
'admin_enhancer',
|
|
||||||
...
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|
||||||
Then sync and migrate::
|
|
||||||
|
|
||||||
$ python manage.py syncdb
|
|
||||||
$ python manage.py migrate
|
$ python manage.py migrate
|
||||||
|
|
||||||
External applications configuration
|
External applications configuration
|
||||||
|
|
@ -139,10 +124,6 @@ suited for your deployment.
|
||||||
|
|
||||||
* Add the following settings to your project::
|
* Add the following settings to your project::
|
||||||
|
|
||||||
SOUTH_MIGRATION_MODULES = {
|
|
||||||
'easy_thumbnails': 'easy_thumbnails.south_migrations',
|
|
||||||
'taggit': 'taggit.south_migrations',
|
|
||||||
}
|
|
||||||
THUMBNAIL_PROCESSORS = (
|
THUMBNAIL_PROCESSORS = (
|
||||||
'easy_thumbnails.processors.colorspace',
|
'easy_thumbnails.processors.colorspace',
|
||||||
'easy_thumbnails.processors.autocrop',
|
'easy_thumbnails.processors.autocrop',
|
||||||
|
|
@ -152,22 +133,6 @@ suited for your deployment.
|
||||||
META_SITE_PROTOCOL = 'http'
|
META_SITE_PROTOCOL = 'http'
|
||||||
META_USE_SITES = True
|
META_USE_SITES = True
|
||||||
|
|
||||||
* If you are using Django 1.7+, be aware that ``filer`` < 0.9.10,
|
|
||||||
``cmsplugin_filer`` and ``django-cms`` < 3.1 currently requires you to
|
|
||||||
setup ``MIGRATION_MODULES`` in settings::
|
|
||||||
|
|
||||||
MIGRATION_MODULES = {
|
|
||||||
'cms': 'cms.migrations_django', # only for django CMS 3.0
|
|
||||||
'menus': 'menus.migrations_django', # only for django CMS 3.0
|
|
||||||
'filer': 'filer.migrations_django', # only for django filer up to 0.9.9
|
|
||||||
'cmsplugin_filer_image': 'cmsplugin_filer_image.migrations_django',
|
|
||||||
}
|
|
||||||
|
|
||||||
Please check
|
|
||||||
`django CMS installation <http://django-cms.readthedocs.org/en/support-3.0.x/how_to/integrate.html#installing-and-configuring-django-cms-in-your-django-project>`_,
|
|
||||||
`cmsplugin-filer README <https://github.com/stefanfoulis/cmsplugin-filer#installation>`_
|
|
||||||
for detailed information.
|
|
||||||
|
|
||||||
* Configure parler according to your languages::
|
* Configure parler according to your languages::
|
||||||
|
|
||||||
PARLER_LANGUAGES = {
|
PARLER_LANGUAGES = {
|
||||||
|
|
|
||||||
11
setup.py
11
setup.py
|
|
@ -28,7 +28,7 @@ setup(
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'django-parler>=1.5',
|
'django-parler>=1.5',
|
||||||
'django-cms>3.0.11',
|
'django-cms>3.2',
|
||||||
'django-taggit>=0.12.2',
|
'django-taggit>=0.12.2',
|
||||||
'django-filer',
|
'django-filer',
|
||||||
'pytz',
|
'pytz',
|
||||||
|
|
@ -46,10 +46,6 @@ setup(
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
keywords='djangocms-blog, blog, django, wordpress, multilingual',
|
keywords='djangocms-blog, blog, django, wordpress, multilingual',
|
||||||
test_suite='cms_helper.run',
|
test_suite='cms_helper.run',
|
||||||
extras_require={
|
|
||||||
'admin-enhancer': ['django-admin-enhancer'],
|
|
||||||
},
|
|
||||||
|
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'Framework :: Django',
|
'Framework :: Django',
|
||||||
|
|
@ -57,14 +53,11 @@ setup(
|
||||||
'License :: OSI Approved :: BSD License',
|
'License :: OSI Approved :: BSD License',
|
||||||
'Natural Language :: English',
|
'Natural Language :: English',
|
||||||
'Framework :: Django',
|
'Framework :: Django',
|
||||||
'Framework :: Django :: 1.6',
|
|
||||||
'Framework :: Django :: 1.7',
|
|
||||||
'Framework :: Django :: 1.8',
|
'Framework :: Django :: 1.8',
|
||||||
|
'Framework :: Django :: 1.9',
|
||||||
'Programming Language :: Python :: 2',
|
'Programming Language :: Python :: 2',
|
||||||
'Programming Language :: Python :: 2.6',
|
|
||||||
'Programming Language :: Python :: 2.7',
|
'Programming Language :: Python :: 2.7',
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'Programming Language :: Python :: 3.3',
|
|
||||||
'Programming Language :: Python :: 3.4',
|
'Programming Language :: Python :: 3.4',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue