2024-03-20 07:55:49 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
echo "building release binary"
|
2024-04-14 17:23:40 +02:00
|
|
|
cargo build --release --all-features -j 1 # limit memory usage
|
2024-03-20 07:55:49 +01:00
|
|
|
echo "stopping service"
|
|
|
|
systemctl --user stop upub
|
|
|
|
echo "installing new binary"
|
2024-03-24 05:03:22 +01:00
|
|
|
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
|
2024-04-14 16:56:43 +02:00
|
|
|
echo "rebuilding frontend"
|
|
|
|
cd web
|
2024-04-14 17:35:41 +02:00
|
|
|
CARGO_BUILD_JOBS=1 /opt/bin/trunk build --release --public-url 'https://feditest.alemi.dev/web'
|
2024-04-14 16:56:43 +02:00
|
|
|
echo "deploying frontend"
|
|
|
|
rm /srv/http/feditest/web/*
|
|
|
|
mv ./dist/* /srv/http/feditest/web/
|
2024-03-20 07:55:49 +01:00
|
|
|
echo "done"
|