Skip to content

pombredanne/django-feedly

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.
  4. 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

About

Django app for creating grid feeds with social integration and e-commerce integration

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 55.1%
  • JavaScript 38.8%
  • CSS 5.2%
  • CoffeeScript 0.9%