11 lines
172 B
Makefile
11 lines
172 B
Makefile
|
|
build:
|
|
if [ ! -d venv ]; then
|
|
python3 -m venv venv
|
|
fi
|
|
venv/bin/pip install requirements.txt
|
|
|
|
|
|
deploy:
|
|
venv/bin/waitress-serve --host 0.0.0.0 --port 5000 listen:app
|