feat: JTR branding + Pink Pulse community partner integration

This commit is contained in:
Ryan Salazar
2026-06-26 21:12:17 -04:00
parent efbd54443d
commit 448035ad60
15 changed files with 488 additions and 10 deletions

View File

@@ -0,0 +1,29 @@
#!/usr/bin/env python3
import paramiko
c = paramiko.SSHClient()
c.set_missing_host_key_policy(paramiko.AutoAddPolicy())
c.connect("10.10.0.10", username="localadministrator", password="Bbt9115xty9176!", timeout=20, allow_agent=False, look_for_keys=False)
def run(cmd, t=120):
print("$", cmd[:200])
_, o, e = c.exec_command(cmd, timeout=t)
code = o.channel.recv_exit_status()
out = (o.read() + e.read()).decode(errors="replace")
print(out[-12000:])
print("exit", code, "\n")
return out
run("cd /tmp/exposedgays && git fetch origin && git reset --hard origin/main && git log -1 --oneline")
run(
"docker exec coolify-db psql -U coolify -d coolify -t -c "
"\"SELECT id,status FROM application_deployment_queues ORDER BY id DESC LIMIT 5;\""
)
run(
"docker exec coolify-db psql -U coolify -d coolify -t -c "
"\"SELECT deployment_logs FROM application_deployment_queues ORDER BY id DESC LIMIT 1;\" | tail -c 8000"
)
run("ls -la /data/coolify/applications/ira4bw4nhbvm87o7s3fgqu6v/logs/ 2>/dev/null | tail -5")
run("tail -80 /data/coolify/applications/ira4bw4nhbvm87o7s3fgqu6v/logs/*.log 2>/dev/null | tail -80")
c.close()