Includes homelab deploy tooling, image position/zoom manifest persistence, and full trading/casino stack. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
596 B
PowerShell
12 lines
596 B
PowerShell
#Requires -Version 5.1
|
|
# Ein-Klick: Sync + Installer + Verifikation auf dem Homelab
|
|
$ErrorActionPreference = "Stop"
|
|
Set-Location (Split-Path $PSScriptRoot -Parent)
|
|
Write-Host "=== PlayBull Homelab Setup ===" -ForegroundColor Cyan
|
|
& "$PSScriptRoot\push-homelab.ps1"
|
|
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
|
|
Write-Host ""
|
|
Write-Host "=== Status ===" -ForegroundColor Cyan
|
|
& "$PSScriptRoot\homelab-exec.ps1" "systemctl status playbull cloudflared --no-pager -l | head -40"
|
|
& "$PSScriptRoot\homelab-exec.ps1" "grep -E '^(PORT|JWT_SECRET|FINNHUB_API_KEY)=' .env | sed 's/=.*/=***/'"
|