all repos — iot-project @ 0627d8a0865451db9600af9ebcb04e083c391149

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