From 8ee67addb69c94c91c6e0a8e0dd2f9ef8cf2620f Mon Sep 17 00:00:00 2001 From: alemi Date: Sat, 8 Jun 2024 19:00:00 +0200 Subject: [PATCH] ci: use config file dont hardcode db --- .tci | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.tci b/.tci index 7ff0ce0..e1daa98 100755 --- a/.tci +++ b/.tci @@ -1,18 +1,18 @@ #!/bin/bash echo "building release binary" -cargo build --release --all-features -j 1 # limit memory usage +cargo build --release --all-features echo "stopping service" 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://upub.alemi.dev migrate +/opt/bin/upub -c /srv/tci/upub.toml --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://upub.alemi.dev/web' +/opt/bin/trunk build --release --public-url 'https://upub.alemi.dev/web' echo "deploying frontend" rm /srv/http/upub/web/* mv ./dist/* /srv/http/upub/web/