To run this Django application locally, start by installing
Python and virtualenv (sudo pip install virtualenv
).
When developing locally, build a local virtualenv, install the
dependencies and start the server:
$ cd <project root dir>
$ git clone https://github.com/afgane/usecloudman.git
$ virtualenv .
$ source bin/activate
$ pip install -r usecloudman/requirements.txt
$ python usecloudman/manage.py syncdb
$ python usecloudman/manage.py runserver
Documentation on this is still pending but it will most likely involve use of gunicorn.