update status message and update migration

This commit is contained in:
Deckard
2025-10-20 01:08:53 -04:00
parent fe96e429c0
commit b1ec4a90d6
2 changed files with 9 additions and 4 deletions

View File

@@ -101,6 +101,11 @@ echo "⋅ Loading images on remote"
run_scp "$TARBALL" "$USER@$HOST:/tmp/acore-modules-images.tar"
run_ssh "docker load < /tmp/acore-modules-images.tar && rm /tmp/acore-modules-images.tar"
if [[ -f .env ]]; then
echo "⋅ Uploading .env"
run_scp .env "$USER@$HOST:$PROJECT_DIR/.env"
fi
echo "⋅ Remote prepares completed"
echo "Run on the remote host to deploy:"
echo " cd $PROJECT_DIR && ./deploy.sh --skip-rebuild --no-watch"