all repos — iot-project @ a4ddd044555eaa6941bcba89b17906abeba6003c

README.md (view raw)

 1# Backend IoT
 2
 3## Instructions
 4
 5### Debug
 6```
 7poetry install
 8poetry run flask --app backend_iot run --port 1111 --debug
 9```
10
11### Production
12```
13poetry install --with prod
14poetry run waitress-serve --port 1111 backend_iot:app
15```