![Build Status](http://jenkins.tangentme.com/buildStatus/icon?job=Build UserService)
User management service authenticates users for all the other micro services projects.
[Documentation] (http://userservice.readthedocs.org/en/latest/)
-
Start and activate environment
virtualenv env source env/bin/activate
-
Run the requirements
pip install -r requirements.txt
-
Install the database
python manage.py syncdb
-
Run the initial data (if required - this is test data only)
python manage.py loaddata data/initial.json
-
Run the tests to ensure the project is up and running correctly
python manage.py test
pip install -r requirements-dev.txt
cd docs
make html
cd docs
sphinx-autobuild source build/html -p3000