###Install
- Instal virtualenv
sudo easy_install venv
- cd to src dir
cd confing/src
- Activate virtualenv
. venv/bin/activate
- Install Flask
pip install flask
- Install Flask Restful
pip install flask-restful
- Install GitPython
pip install gitpython==0.3.1
- Install jsonpatch
pip install jsonpatch
###Use
- Start server (in venv)
cd src
python config.py
curl http://localhost:5000/config/test.json -d '{"key":"value"}' -X PUT
curl http://localhost:5000/config/test.json -X GET
curl http://localhost:5000/config/test.json -X DELETE