Go to file
2021-05-07 09:28:08 +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 Initial commit 2021-05-07 09:28:08 +02:00
gardencontrol Initial commit 2021-05-07 09:28:08 +02:00
greenhouse Initial commit 2021-05-07 09:28:08 +02:00
heat Initial commit 2021-05-07 09:28:08 +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 Initial commit 2021-05-07 09:28:08 +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