Requisites:
Steps:
Create a PostgreSQL database for jobcontrol
Install jobcontrol in a virtualenv:
virtualenv jobcontrol
pip install jobcontrol
Create database tables:
jobcontrol-cli --config-file path/to/conf.yaml install
Launch the webapp:
jobcontrol-cli --config-file path/to/conf.yaml web --port 5050
Start redis server:
redis-server
Launch the celery worker:
jobcontrol-cli --config-file path/to/conf.yaml worker
Visit http://127.0.0.1:5050
Enjoy!