Files
deployer/Makefile
2025-01-10 20:51:42 -05:00

11 lines
179 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