├── README.md ├── const.py ├── db.sqlite3 ├── livelog ├── __init__.py ├── consumers.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── blogging_worker.py ├── routing.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py ├── manage.py ├── requirements.txt └── templates └── blog.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshiyou/livelog/HEAD/README.md -------------------------------------------------------------------------------- /const.py: -------------------------------------------------------------------------------- 1 | GROUP_NAME = 'liveblog' 2 | IFANR_FEED_URL = 'http://www.ifanr.com/feed' 3 | -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshiyou/livelog/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /livelog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /livelog/consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshiyou/livelog/HEAD/livelog/consumers.py -------------------------------------------------------------------------------- /livelog/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /livelog/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /livelog/management/commands/blogging_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshiyou/livelog/HEAD/livelog/management/commands/blogging_worker.py -------------------------------------------------------------------------------- /livelog/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshiyou/livelog/HEAD/livelog/routing.py -------------------------------------------------------------------------------- /livelog/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshiyou/livelog/HEAD/livelog/settings.py -------------------------------------------------------------------------------- /livelog/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshiyou/livelog/HEAD/livelog/urls.py -------------------------------------------------------------------------------- /livelog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshiyou/livelog/HEAD/livelog/views.py -------------------------------------------------------------------------------- /livelog/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshiyou/livelog/HEAD/livelog/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshiyou/livelog/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django 2 | channels 3 | asgi_redis 4 | feedparser -------------------------------------------------------------------------------- /templates/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshiyou/livelog/HEAD/templates/blog.html --------------------------------------------------------------------------------