feat: add deploy-agenx-lora.sh to repo

This commit is contained in:
Christian Medina
2026-06-30 15:38:05 -04:00
parent 39a493f261
commit 11951a8276

23
deploy-agenx-lora.sh Executable file
View File

@@ -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"