mirror of
https://github.com/ION606/static-site-hosting.git
synced 2026-05-14 22:16:54 +00:00
18 lines
216 B
Makefile
18 lines
216 B
Makefile
all: run
|
|
|
|
run:
|
|
nohup .venv/bin/python app.py > output.log 2>&1 & echo $! > app.pid
|
|
|
|
stop:
|
|
kill -9 $(cat app.pid) || true
|
|
rm -f app.pid
|
|
|
|
restart: stop run
|
|
|
|
logs:
|
|
tail -f output.log
|
|
|
|
clean: stop
|
|
rm -f output.log
|
|
|