Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 342 Bytes

readme.md

File metadata and controls

9 lines (6 loc) · 342 Bytes

To run, navigate to the project's root directory in a terminal and run:

export FLASK_APP=main.py
gunicorn main:app --bind 0.0.0.0:8712 -w 4 -k eventlet

or,

nohup gunicorn main:app --bind 0.0.0.0:8712 -w 4 -k eventlet </dev/null >log.log 2>&1 &
nohup python3 client.py http://localhost:8712 --brewpi http://localhost:8000 &