From 11951a82765a53e61079acf9d6789cd37110053a Mon Sep 17 00:00:00 2001 From: Christian Medina <37550954+cmedinasoriano@users.noreply.github.com> Date: Tue, 30 Jun 2026 15:38:05 -0400 Subject: [PATCH] feat: add deploy-agenx-lora.sh to repo --- deploy-agenx-lora.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 deploy-agenx-lora.sh diff --git a/deploy-agenx-lora.sh b/deploy-agenx-lora.sh new file mode 100755 index 0000000..4d7d910 --- /dev/null +++ b/deploy-agenx-lora.sh @@ -0,0 +1,23 @@ +#!/bin/bash +# Deploy agenx-lora-training to /opt/loras/agenx-lora-training +# Run this on the GPU server after scp'ing it there + +set -e + +REPO_DIR="/opt/loras/agenx-lora-training" +REPO_URL="https://gitea.cyaren.com/cmedina/agenx-lora-training.git" + +echo "=== Deploying agenx-lora-training ===" +echo "Cloning to: ${REPO_DIR}" +echo "" + +# Clone repo +git clone "${REPO_URL}" "${REPO_DIR}" + +echo "" +echo "=== Done ===" +echo "Repository is at: ${REPO_DIR}" +echo "" +echo "Next steps:" +echo " cd ${REPO_DIR}" +echo " bash train-on-this-server.sh"