Skip to content

johanvo/rsstodolist-server

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rsstodolist-server

rsstodolist-server is a django port of the Google App Engine rsstodolist application (http://rsstodolist.appspot.com). Same functionality are expected but It can be host on your server.

Pre-requisites

Have python and django (1.5) installed and eventually mysql or another database (you could also use sqlite). You better install django using pip :

pip install Django==1.5.5

If you’ll use mysql as database, you’ll need the following command on Debian / Ubuntu to build the mysql client :

apt-get install python-dev
apt-get install libmysqlclient-dev
pip install mysql-python

Then create a database and a dedicated user, for mysql :

mysql -u root -p
create database rsstodolist;
grant all privileges on rsstodolist.* to 'rsstodolist'@'localhost' identified by 'CHANGEME';

You can then try to login using :

mysql -u rsstodolist -p

Then, you’ll have to change database information in rsstodolist\settings.py file (use settings.py.dist as example).

You should then create database table by :

python manage.py syncdb

Run

You can then run the project using :

python manage.py runserver

Deploy

Follow the Django deployement guide to deploy the application : https://docs.djangoproject.com/en/dev/howto/deployment/

Serve src/Feeds/static as static files in /static directory

About

Django port of the Google App Engine rsstodolist application

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 60.8%
  • HTML 33.2%
  • XSLT 5.0%
  • CSS 1.0%