You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
genmarkov/Makefile

14 lines
317 B

4 years ago
markov:
cargo build --release --features trust-x-forwarded-for
strip target/release/markov
4 years ago
install: uninstall
cp -f target/release/markov /usr/local/bin/markov
rc-service markov start
sleep 0.2
4 years ago
curl -X PUT -d @default http://127.0.0.1:8001/put
4 years ago
uninstall:
-rc-service markov stop
4 years ago
rm -f /usr/local/bin/markov