Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 516 Bytes

README.rst

File metadata and controls

19 lines (13 loc) · 516 Bytes

Instructions

First, create a virtual environment and install django:

$ virtualenv --python=python2.6 --no-site-packages ./django-test
$ cd django-test
$ ./bin/pip install django

Then get the code:

$ git clone http://[email protected]/unweb/simple-archive.git simple-archive/

Finally, populate the database and run the app:

$ cd simple-archive
$ ../bin/python manage.py syncdb
$ ../bin/python manage.py loaddata fixtures
$ ../bin/python manage.py runserver