Files
static-site-hosting/Makefile
T

18 lines
216 B
Makefile
Raw Normal View History

2025-02-16 16:38:34 -05:00
all: run
2025-02-16 15:26:58 -05:00
run:
2025-02-16 16:38:34 -05:00
nohup .venv/bin/python app.py > output.log 2>&1 & echo $! > app.pid
2025-02-16 15:37:38 -05:00
stop:
2025-02-16 16:38:34 -05:00
kill -9 $(cat app.pid) || true
rm -f app.pid
restart: stop run
logs:
tail -f output.log
2025-02-16 15:37:38 -05:00
clean: stop
2025-02-16 16:38:34 -05:00
rm -f output.log