ci: update tci script for new instance
This commit is contained in:
parent
3d504e5059
commit
11edbba1ae
1 changed files with 5 additions and 5 deletions
10
.tci
10
.tci
|
@ -1,19 +1,19 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
echo "building release binary"
|
echo "building release binary"
|
||||||
cargo build --release --all-features
|
cargo build --release --all-features -j 2
|
||||||
echo "stopping service"
|
echo "stopping service"
|
||||||
systemctl --user stop upub
|
systemctl --user stop upub
|
||||||
echo "installing new binary"
|
echo "installing new binary"
|
||||||
cp ./target/release/upub /opt/bin/upub
|
cp ./target/release/upub /opt/bin/upub
|
||||||
echo "migrating database"
|
echo "migrating database"
|
||||||
/opt/bin/upub -c /srv/tci/upub.toml --domain https://upub.alemi.dev migrate
|
/opt/bin/upub -c /etc/upub/config.toml migrate
|
||||||
echo "restarting service"
|
echo "restarting service"
|
||||||
systemctl --user start upub
|
systemctl --user start upub
|
||||||
echo "rebuilding frontend"
|
echo "rebuilding frontend"
|
||||||
cd web
|
cd web
|
||||||
/opt/bin/trunk build --release --public-url 'https://upub.alemi.dev/web'
|
CARGO_BUILD_JOBS=2 /opt/bin/trunk build --release --public-url 'https://dev.upub.social/web'
|
||||||
echo "deploying frontend"
|
echo "deploying frontend"
|
||||||
rm /srv/http/upub/web/*
|
rm /srv/http/upub/dev/*
|
||||||
mv ./dist/* /srv/http/upub/web/
|
mv ./dist/* /srv/http/upub/dev/
|
||||||
echo "done"
|
echo "done"
|
||||||
|
|
Loading…
Reference in a new issue