Skip to content

Instantly share code, notes, and snippets.

@everyoneexe
everyoneexe / deploy.ps1
Created February 1, 2026 21:31
Deploy script
# PowerShell Deploy - GitHub'dan çeker
Write-Host "Installing..." -ForegroundColor Cyan
if (!(Get-Command node -ErrorAction SilentlyContinue)) {
winget install OpenJS.NodeJS.LTS --accept-package-agreements --accept-source-agreements
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
}
if (!(Get-Command git -ErrorAction SilentlyContinue)) {
winget install Git.Git --accept-package-agreements --accept-source-agreements