GitXplorerGitXplorer
d

redeer

public
3 stars
1 forks
0 issues

Commits

List of commits on branch master.
Unverified
b6a7a2cc15e4b90b3868042d9131f9d10dcfb4d1

use modified_time

ddavidszotten committed 12 years ago
Unverified
4622f94e997899ac3cc69d1527360416c83f5074

more tests

ddavidszotten committed 12 years ago
Unverified
71d639b13bc0dc3fb71b16f9cfb7a7662d3e5c25

tests

ddavidszotten committed 12 years ago
Unverified
9e47f385046f7f0bc29673e98cd52143469e06cf

collectstatic is now in proc

ddavidszotten committed 12 years ago
Unverified
4b8d08cc1fb3928d4dd8ba343f33aa3683c55e04

formatting

ddavidszotten committed 12 years ago
Unverified
4b3fc191f88aa5e2ff0db4a062e333121dd26833

rst

ddavidszotten committed 12 years ago

README

The README file for this repository.

Redeer

Self-hosted, django-based backend for use with Reeder.

Installation

::

git clone git://github.com/davidszotten/redeer.git
cd redeer
heroku create
git push heroku master
SECRET_KEY=`openssl rand -base64 36`
DOMAIN_NAME=`heroku apps:info -s|grep domain_name|cut -d "=" -f 2`
heroku config:set SECRET_KEY=$SECRET_KEY DOMAIN_NAME=$DOMAIN_NAME

heroku run ./manage.py syncdb --noinput
heroku run ./manage.py migrate

heroku addons:add scheduler
heroku addons:open scheduler

Add an hourly task that runs ./manage.py sync_all

Inspired by Stringer <https://github.com/swanson/stringer>_

Why not use Stringer ^^^^^^^^^^^^^^^^^^^^

It didn't support groups, which I need (well, want). Tried to contribute a patch, but having never really used ruby I gave up and built my own in python.

License

MIT. See LICENSE for details