greenhouse/README.md
2021-03-22 12:18:31 +01:00

368 B

Greenhouse

Greenhous control

Installation

python setup.py install

Usage

Manual

Create wrapper script (e.g. wrapper.py):

from greenhous import app

if __name__ == "__main__":
    app.run()

Execute the wrapper script:

python3 wrapper.py

gunicorn

gunicorn --bind 0.0.0.0:80 greenhouse:app