Initial PlayBull release with Trilogy Hub integration.

Includes homelab deploy tooling, image position/zoom manifest persistence, and full trading/casino stack.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-02 08:31:36 +02:00
commit 94b6cc3be9
60 changed files with 9206 additions and 0 deletions

5
deploy/test-ports.ps1 Normal file
View File

@@ -0,0 +1,5 @@
$ip = "192.168.178.49"
foreach ($port in 22, 80, 443, 3080) {
$r = Test-NetConnection -ComputerName $ip -Port $port -WarningAction SilentlyContinue
Write-Output "Port ${port}: $($r.TcpTestSucceeded)"
}