forked from alemi/upub
13 lines
440 B
Bash
Executable file
13 lines
440 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "building release binary"
|
|
cargo build --release --all-features -j 2 # vps we deploy on has 4 vcpus, don't hog them all!
|
|
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://feditest.alemi.dev migrate
|
|
echo "restarting service"
|
|
systemctl --user start upub
|
|
echo "done"
|