Fix Map.tsx types, auth flow, Docker legacy-peer-deps

This commit is contained in:
Ryan Salazar
2026-06-26 17:44:19 -04:00
parent 3eb12c8b34
commit 2bd3c31660
11 changed files with 562 additions and 9 deletions

11
deploy/get-log.py Normal file
View File

@@ -0,0 +1,11 @@
#!/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)
_, o, e = c.exec_command(
"docker exec coolify-db psql -U coolify -d coolify -t -A -c "
"\"SELECT logs FROM application_deployment_queues WHERE id=1086;\""
)
print(o.read().decode()[-15000:])
c.close()