Go to file
2012-11-15 15:17:00 +05:30
ifa year parsing 2012-11-15 15:17:00 +05:30
static first commit 2012-11-08 16:15:40 +05:30
templates first commit 2012-11-08 16:15:40 +05:30
wsgi add wsgi 2012-11-15 14:06:25 +05:30
fabfile.py first commit 2012-11-08 16:15:40 +05:30
manage.py first commit 2012-11-08 16:15:40 +05:30
README add README 2012-11-08 16:19:46 +05:30
requirements.txt first commit 2012-11-08 16:15:40 +05:30

Setup:

$ virtualenv --system-site-packages .
$ . bin/activate
$ pip install -r requirements.txt
$ mysql -u root
mysql> create database ifa;
mysql> quit;
$ python manage.py syncdb

Import data:

$ python manage.py shell
>>> from ifa.films import imports
>>> imports.do(path="/path/to/FILMS.txt")

Run dev server:

$ python manage.py runserver