Go to file
2021-04-27 12:26:38 +02:00
.vscode Initial commit 2021-04-27 12:26:38 +02:00
hochbeet Initial commit 2021-04-27 12:26:38 +02:00
.gitignore Initial commit 2021-04-27 12:26:38 +02:00
hochbeet.service Initial commit 2021-04-27 12:26:38 +02:00
README.md Initial commit 2021-04-27 12:26:38 +02:00
setup.py Initial commit 2021-04-27 12:26: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