Skip to content

Latest commit

 

History

History
66 lines (45 loc) · 1.44 KB

README.rst

File metadata and controls

66 lines (45 loc) · 1.44 KB

cmsplugin-plain-text

Latest Version Development Status

A simple plaintext plugin for django CMS.

Requirements

  • Django >= 1.5
  • django-cms >= 3.0

Quickstart

Installation:

$ pip install cmsplugin-plain-text

Configure installed apps in your settings.py :

INSTALLED_APPS = (
    ...,
    'cmsplugin_plain_text',
)

Migrate your database :

$ ./manage.py migrate cmsplugin_plain_text

If you are using Django < 1.7 in conjunction with South, make sure your SOUTH_MIGRATION_MODULES setting contains this line.:

SOUTH_MIGRATION_MODULES = {
    ...,
    'cmsplugin_plain_text': 'cmsplugin_plain_text.south_migrations',
}

Running Tests

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install -r requirements-test.txt
(myenv) $ python runtests.py

Credits

Tools used in rendering this package: