This commit is contained in:
eric
2026-06-08 06:05:31 -05:00
parent ebfec37e47
commit 06ab949d81
77 changed files with 3646 additions and 358 deletions

View File

@@ -8,9 +8,11 @@ from pathlib import Path
import paramiko
HOST = os.getenv("NOMAD_SSH_HOST", "82.157.112.245")
USER = os.getenv("NOMAD_SSH_USER", "ubuntu")
PASSWORD = os.getenv("NOMAD_SSH_PASSWORD", "Xiao4669805")
from load_dev_env import ssh_config
HOST, USER, SSH_PASSWORD = ssh_config()
REMOTE_DIR = "/opt/nomadro-services/integrations"
NGINX_DIR = "/www/server/panel/vhost/nginx"
ROOT = Path(__file__).resolve().parent.parent