upub/.tci
2024-03-20 09:43:11 +01:00

13 lines
376 B
Bash
Executable file

#!/bin/bash
echo "building release binary"
cargo build --release --all-features
echo "stopping service"
systemctl --user stop upub
echo "installing new binary"
cat ./target/release/upub > /opt/bin/upub
echo "applying migrations"
/opt/bin/upub --db /srv/tci/upub.db --domain https://feditest.alemi.dev migrate
echo "restarting service"
systemctl --user start upub
echo "done"