group-actor/Makefile

19 lines
281 B
Makefile
Raw Normal View History

2021-08-22 17:19:21 +00:00
.PHONY: build
build:
cargo build --release
ln -sf ./target/release/fedigroups .
# if you have a service installed...
restart:
sudo systemctl restart fedigroups
2021-08-26 20:43:32 +00:00
stop:
sudo systemctl stop fedigroups
start:
sudo systemctl start fedigroups
logs:
journalctl -f -u fedigroups