index/index
2010-12-31 21:21:30 +05:30
..
books added files/ 2010-06-09 20:00:34 +05:30
catalogues added files 2010-03-02 22:47:02 +05:30
files license + handle re-adding drive (somewhat) 2010-11-25 11:18:39 +01:00
harddrives silly syntax error 2010-12-31 21:21:30 +05:30
hardware added files 2010-03-02 22:47:02 +05:30
media added files 2010-03-02 22:47:02 +05:30
templates added files 2010-03-02 22:47:02 +05:30
__init__.py added files 2010-03-02 22:47:02 +05:30
dropandcreatedb.py added files 2010-03-02 22:47:02 +05:30
manage.py added files 2010-03-02 22:47:02 +05:30
README.txt added files 2010-03-02 22:47:02 +05:30
settings.py include local_settings in settings 2010-03-02 22:51:03 +05:30
urls.py added files 2010-03-02 22:47:02 +05:30

Settings assumes mysql db name of 'idx' - change if your db is something else

Requires django-tagging from svn:
svn checkout http://django-tagging.googlecode.com/svn/trunk/ tagging-trunk

Requires python-dateutil
Requires elementtree: sudo easy_install elementtree
Requires simplejson: sudo easy_install simplejson

Setup DB:
mysql -u root
mysql> create database idx;
mysql> quit;

Create tables:
python manage.py syncdb (or python dropandcreatedb.py)

Run Server:
python manage.py runserver

Open Browser:
http://localhost:8000