Metadata-Version: 2.1
Name: django-feedly
Version: 0.6.8
Summary: A Django app to create list and grid-based feeds.
Home-page: https://williamlagos.github.io/
Author: William Oliveira de Lagos
Author-email: william.lagos@icloud.com
License: LGPLv3 License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/x-rst

======
Feedly
======

Feedly is a Django app to create list and grid-based feeds. The
feeds created with this app can have social and e-commerce aspects.

Quick start
-----------

1. Add "feedly" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = (
        ...
        'feedly',
    )

2. Include the feedly URLconf in your project urls.py like this::

    url(r'^feedly/', include('feedly.urls')),

3. Run `python manage.py syncdb` to create the feedly models.

3. Run `python manage.py loaddata fixtures.json` to create the data on feed.

5. Visit http://127.0.0.1:8000/ to view a sample with populated data

