Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 326 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 326 Bytes

Set up

poetry install

Run

Development

poetry shell
export FLASK_APP=api/__init__.py && export FLASK_ENV=development && flask run --host 0.0.0.0

Production

poetry run waitress-serve --port 5000 api:app &> /dev/null &

Docker (WIP)

docker-compose down && docker-compose up -d