From b5d3e4e864f4a15f5d2d4974e86a5111a77627e8 Mon Sep 17 00:00:00 2001 From: alemi Date: Mon, 27 May 2024 06:28:04 +0200 Subject: [PATCH] ci: new db new me --- .tci | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.tci b/.tci index 8f71056..7ff0ce0 100755 --- a/.tci +++ b/.tci @@ -7,13 +7,13 @@ systemctl --user stop upub echo "installing new binary" cp ./target/release/upub /opt/bin/upub echo "migrating database" -/opt/bin/upub --db "sqlite:///srv/tci/upub.db" --domain https://feditest.alemi.dev migrate +/opt/bin/upub --db "sqlite:///srv/tci/upub.db" --domain https://upub.alemi.dev migrate echo "restarting service" systemctl --user start upub echo "rebuilding frontend" cd web -CARGO_BUILD_JOBS=1 /opt/bin/trunk build --release --public-url 'https://feditest.alemi.dev/web' +CARGO_BUILD_JOBS=1 /opt/bin/trunk build --release --public-url 'https://upub.alemi.dev/web' echo "deploying frontend" -rm /srv/http/feditest/web/* -mv ./dist/* /srv/http/feditest/web/ +rm /srv/http/upub/web/* +mv ./dist/* /srv/http/upub/web/ echo "done"