Installation¶
- Install the package from pip:
pip install django-feedaggregator
- Add
feedaggregator,taggitandtaggit_templatetags2to INSTALLED_APPS in your settings.py:
INSTALLED_APPS = (
...,
'feedaggregator',
'taggit',
'taggit_templatetags2'
)
- Add feedaggregator urls:
urlpatterns = patterns('',
...,
url(r'^feedaggregator/', include('feedaggregator.urls', namespace='feedaggregator')),
)
- Migrate the database
python manage.py migrate
Done! You’re good to go.