Go to file
2021-04-06 05:39:43 +00:00
.vscode Add web page 2021-03-22 12:18:15 +01:00
greenhouse log output to std 2021-04-04 07:02:39 +00:00
.gitignore Change temperature sensor from DHT22 to DS18B20 2021-03-16 08:23:11 +01:00
greenhouse.json Add configuration page 2021-03-22 12:18:31 +01:00
greenhouse.service Fix systemd service file 2021-04-04 08:50:25 +02:00
README.md Add configuration page 2021-03-22 12:18:31 +01:00
setup.py setup.py: Add package_data 2021-04-06 05:39:43 +00: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