all repos — iot-project @ 9ce79df3e12ecf15bc627b3c3d3214b787188649

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```