Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 787 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 787 Bytes

Running the server during development

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

Running the app in production setting

Documentation on this is still pending but it will most likely involve use of gunicorn.