14 lines
277 B
Makefile
14 lines
277 B
Makefile
SHELL := /bin/bash
|
|
|
|
build:
|
|
if [ ! -d venv ]; then \
|
|
python -m venv venv; \
|
|
fi; \
|
|
venv/bin/pip install -r requirements.txt
|
|
venv/bin/python caddy.py
|
|
|
|
start:
|
|
sudo venv/bin/waitress-serve --host 0.0.0.0 --port $(PORT) listen:app
|
|
|
|
deploy_self:
|
|
venv/bin/python deploy_self.py
|