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:
13
deploy/homelab-git-check.ps1
Normal file
13
deploy/homelab-git-check.ps1
Normal file
@@ -0,0 +1,13 @@
|
||||
#Requires -Version 5.1
|
||||
$ErrorActionPreference = "Stop"
|
||||
. "$PSScriptRoot/homelab-lib.ps1"
|
||||
$config = Get-HomelabConfig
|
||||
$cmds = @(
|
||||
"git status -sb",
|
||||
"git diff --stat | head -30",
|
||||
"curl -s http://127.0.0.1:3080/api/images | head -c 200"
|
||||
)
|
||||
foreach ($c in $cmds) {
|
||||
Write-Host "`n>> $c" -ForegroundColor Cyan
|
||||
& "$PSScriptRoot/homelab-exec.ps1" $c
|
||||
}
|
||||
Reference in New Issue
Block a user