Go to file
2022-04-12 09:23:38 +02:00
.vscode Initial commit 2021-05-07 09:28:08 +02:00
config Initial commit 2021-05-07 09:28:08 +02:00
control Fix: correct index boundaries for water control 2022-04-12 09:23:38 +02:00
gardencontrol some fixes 2022-03-29 16:37:12 +02:00
heat Fix: prevent multiple objects of heat in case of config reload 2022-03-30 12:01:05 +02:00
remotecontrol Initial commit 2021-05-07 09:28:08 +02:00
.gitignore Initial commit 2021-05-07 09:28:08 +02:00
gardencontrol.service Initial commit 2021-05-07 09:28:08 +02:00
README.md Initial commit 2021-05-07 09:28:08 +02:00
setup.py Fix: correct index boundaries for water control 2022-04-12 09:23:38 +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