Advanced FacetView User Interface
virtualenv --system-site-packages env
pip install flask pip install gunicorn
python db_create.py
python run.py
As a daemon: gunicorn -w4 -b 0.0.0.0:8879 --keyfile=server.key --certfile=server.pem -k gevent --daemon -p tosca.pid tosca:app In the foreground: gunicorn -w4 -b 0.0.0.0:8879 --keyfile=server.key --certfile=server.pem -k gevent -p tosca.pid tosca:app