Go to file
2022-03-29 14:05:07 +02:00
.vscode Initial commit 2021-04-29 07:16:56 +02:00
hochbeet hochbeet: Fix missing switch water on/off 2022-03-29 14:05:07 +02:00
.gitignore Initial commit 2021-04-29 07:16:56 +02:00
hochbeet.service Initial commit 2021-04-29 07:16:56 +02:00
README.md Initial commit 2021-04-29 07:16:56 +02:00
setup.py Initial commit 2021-04-29 07:16:56 +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