upub/.tci

14 lines
440 B
Text
Raw Normal View History

2024-03-20 07:55:49 +01:00
#!/bin/bash
echo "building release binary"
2024-04-14 16:52:44 +02:00
cargo build --release --all-features -j 2 # vps we deploy on has 4 vcpus, don't hog them all!
2024-03-20 07:55:49 +01:00
echo "stopping service"
systemctl --user stop upub
echo "installing new binary"
cp ./target/release/upub /opt/bin/upub
2024-03-26 00:51:28 +01:00
echo "migrating database"
/opt/bin/upub --db "sqlite:///srv/tci/upub.db" --domain https://feditest.alemi.dev migrate
2024-03-20 07:55:49 +01:00
echo "restarting service"
systemctl --user start upub
echo "done"