A barebones Django app, which can easily be deployed to Koli.
Make sure you have Python installed properly. Also, install the Postgres.
$ git clone git@github.com:koli/python-getting-started.git
$ cd python-getting-started
$ pip install -r requirements.txt
$ createdb python_getting_started
$ python manage.py migrate
$ python manage.py collectstatic
$ gunicorn gettingstarted.wsgi --log-file -
Your app should now be running on localhost:5000.