Files
deployer/Makefile
2025-01-08 23:34:15 -05:00

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