Skip to content

Commit

Permalink
Update README [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Aug 27, 2022
1 parent 8d65240 commit ca37ba3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 21 deletions.
17 changes: 6 additions & 11 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Python: 3.7, 3.8, 3.9, 3.10

Django: 2.2, 3.2

django CMS: 3.7 - 3.11
django CMS: 3.7 - 3.10

**********
Quickstart
Expand All @@ -22,20 +22,15 @@ Install djangocms-page-tags::

Then add it to INSTALLED_APPS along with its dependencies::

'taggit',
'taggit_autosuggest',
'djangocms_page_tags',
"taggit",
"taggit_autosuggest",
"djangocms_page_tags",

Add ``taggit_autosuggest`` to urlconf::

url(r'^taggit_autosuggest/', include('taggit_autosuggest.urls')),
path("taggit_autosuggest", include("taggit_autosuggest.urls")),


Execute migration or syncdb::

$ python manage.py syncdb

or::
Execute migration::

$ python manage.py migrate

Expand Down
15 changes: 5 additions & 10 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,15 @@ Installation

#. Then add it to INSTALLED_APPS along with its dependencies::

'taggit',
'taggit_autosuggest',
'djangocms_page_tags',
"taggit",
"taggit_autosuggest",
"djangocms_page_tags",

#. Add `taggit_autosuggest` to urlconf::

url(r'^taggit_autosuggest/', include('taggit_autosuggest.urls')),
path("taggit_autosuggest", include("taggit_autosuggest.urls")),


#. Synchronize the database with syncdb::

$ python manage.py syncdb

or migrate::
#. Synchronize the database with migrate::

$ python manage.py migrate

Expand Down

0 comments on commit ca37ba3

Please sign in to comment.