This is a REST-based utility to manage projects, users and other tasks in SoftwareFactory(http://softwarefactory.enovance.com). It consists of two parts: a server with a REST API interface and a command line interface (CLI).
More information is included in the documentation(docs/intro.rst).
Run the following commands if you only want to install the commandline tool:
pip install -r requirements.txt python setup.py
Update config.py and execute the following commands if you want to run managesf in a development setup::
virtualenv venv . venv/bin/activate pip install -r requirements.txt pecan serve config.py
To run it in production please refer to the Pecan documentation:
- Refer to pecan doc