Go to file
2022-04-14 12:07:04 +02:00
.vscode Initial commit 2021-04-28 08:12:18 +02:00
hochbeet Fix: Enable manual on/off switching 2022-04-14 12:07:04 +02:00
.gitignore Initial commit 2021-04-28 08:12:18 +02:00
hochbeet.service Initial commit 2021-04-28 08:12:18 +02:00
README.md Initial commit 2021-04-28 08:12:18 +02:00
setup.py Fix: Enable manual on/off switching 2022-04-14 12:07:04 +02:00

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