Add full monorepo: virtual-banker, backend, frontend, docs, scripts, deployment

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
defiQUG
2026-02-10 11:32:49 -08:00
parent aafcd913c2
commit 88bc76da91
815 changed files with 125522 additions and 264 deletions

32
scripts/set-vmid-password.sh Executable file
View File

@@ -0,0 +1,32 @@
#!/usr/bin/env bash
# Set Root Password for Proxmox LXC Container
# Must be run on Proxmox host with pct command available
set -euo pipefail
VMID="${1:-2500}"
PASSWORD="${2:-***REDACTED-LEGACY-PW***}"
if ! command -v pct >/dev/null 2>&1; then
echo "Error: pct command not found"
echo "This script must be run on the Proxmox host"
echo ""
echo "To set password manually, run on Proxmox host:"
echo " pct set $VMID --password \"$PASSWORD\""
exit 1
fi
echo "Setting root password for VMID $VMID..."
pct set "$VMID" --password "$PASSWORD"
if [ $? -eq 0 ]; then
echo "✅ Password set successfully for VMID $VMID"
echo ""
echo "You can now SSH into the container:"
echo " ssh root@<container-ip>"
echo " Password: $PASSWORD"
else
echo "❌ Failed to set password"
exit 1
fi