2024-03-20 07:55:49 +01:00
|
|
|
#!/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
|
2024-03-22 02:29:05 +01:00
|
|
|
echo "migrating database"
|
2024-03-21 01:17:00 +01:00
|
|
|
/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"
|