Skip to content

Instantly share code, notes, and snippets.

@bdbb
bdbb / bootstrap.ps1
Created April 16, 2026 06:51
Signal Defense bootstrap scripts
# Signal Defense — Bootstrap script for fresh machines (Windows PowerShell)
# Downloads deps, authenticates GitHub, clones the repo, pulls LFS files.
$ErrorActionPreference = "Continue"
function Write-Info { param([string]$Msg) Write-Host $Msg -ForegroundColor Cyan }
function Write-Success { param([string]$Msg) Write-Host $Msg -ForegroundColor Green }
function Write-Warn { param([string]$Msg) Write-Host $Msg -ForegroundColor Yellow }
function Write-Err { param([string]$Msg) Write-Host $Msg -ForegroundColor Red }