mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
Removed South from docs
This commit is contained in:
parent
f4b8706d23
commit
6ef7cce674
1 changed files with 3 additions and 4 deletions
|
@ -10,7 +10,7 @@ necessary dependencies of dpaste as well::
|
||||||
|
|
||||||
pip install dpaste
|
pip install dpaste
|
||||||
|
|
||||||
Add ``dpaste`` and (preferred) ``south`` to your ``INSTALLED_APPS``::
|
Add ``dpaste`` and ``mptt`` to your ``INSTALLED_APPS``::
|
||||||
|
|
||||||
INSTALLED_APPS = (
|
INSTALLED_APPS = (
|
||||||
'django.contrib.sessions',
|
'django.contrib.sessions',
|
||||||
|
@ -19,10 +19,9 @@ Add ``dpaste`` and (preferred) ``south`` to your ``INSTALLED_APPS``::
|
||||||
|
|
||||||
'mptt',
|
'mptt',
|
||||||
'dpaste',
|
'dpaste',
|
||||||
# 'south', (supported)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
Add ``dpaste`` and if you want the ``dpaste_api`` to your urlpatterns::
|
Add ``dpaste`` — and if you want — the ``dpaste_api`` to your urlpatterns::
|
||||||
|
|
||||||
urlpatterns = patterns('',
|
urlpatterns = patterns('',
|
||||||
# ...
|
# ...
|
||||||
|
@ -31,7 +30,7 @@ Add ``dpaste`` and if you want the ``dpaste_api`` to your urlpatterns::
|
||||||
url(r'pastebin/api/', include('dpaste.urls.dpaste_api')),
|
url(r'pastebin/api/', include('dpaste.urls.dpaste_api')),
|
||||||
)
|
)
|
||||||
|
|
||||||
Finally just ``syncdb`` or if you use South, migrate::
|
Finally just migrate the database schema::
|
||||||
|
|
||||||
manage.py migrate dpaste
|
manage.py migrate dpaste
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue