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.
14 lines
314 B
14 lines
314 B
markov:
|
|
cargo build --release --features trust-x-forwarded-for
|
|
strip target/release/markov
|
|
|
|
install: uninstall
|
|
cp -f target/release/markov /usr/local/bin/markov
|
|
rc-service markov start
|
|
sleep 0.2
|
|
curl -X PUT -d @default http://127.0.0.1:8001/put
|
|
|
|
uninstall:
|
|
-rc-service markov stop
|
|
rm /usr/local/bin/markov
|