Skip to content

Instantly share code, notes, and snippets.

View Maski0's full-sized avatar
🐱

Maski Maski0

🐱
View GitHub Profile
@Maski0
Maski0 / fastapi.ps1
Created June 30, 2026 10:40
Template Project
$ErrorActionPreference = "Stop"
if (-not (Get-Command uv -ErrorAction SilentlyContinue)) {
Write-Host "uv is not installed. Install uv first."
exit 1
}
uv init
New-Item -ItemType Directory -Force -Path "src" | Out-Null