upub/.tci

20 lines
553 B
Text
Raw Normal View History

2024-03-20 07:55:49 +01:00
#!/bin/bash
echo "building release binary"
2024-06-21 02:21:27 +02:00
cargo build --release --all-features -j 2
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"
2024-06-21 02:21:27 +02:00
/opt/bin/upub -c /etc/upub/config.toml migrate
2024-03-20 07:55:49 +01:00
echo "restarting service"
systemctl --user start upub
2024-04-14 16:56:43 +02:00
echo "rebuilding frontend"
cd web
2024-06-21 02:21:27 +02:00
CARGO_BUILD_JOBS=2 /opt/bin/trunk build --release --public-url 'https://dev.upub.social/web'
2024-04-14 16:56:43 +02:00
echo "deploying frontend"
2024-06-21 02:21:27 +02:00
rm /srv/http/upub/dev/*
mv ./dist/* /srv/http/upub/dev/
2024-03-20 07:55:49 +01:00
echo "done"