weblight/README.md
Thomas Klaehn a08243f366 Initial commit
Signed-off-by: Thomas Klaehn <tkl@blackfinn.de>
2021-02-04 16:38:40 +01:00

397 B

Weblight

Tool to switch on/off the yard light with web page.

Installation

python setup.py install

Usage

Manual

Create wrapper script (e.g. wrapper.py):

from weblight import app

if __name__ == "__main__":
    app.run()

Execute the wrapper script:

python3 wrapper.py

gunicorn

gunicorn --bind 0.0.0.0:80 weblight:app