47679269f7
Add a purpose-drawn icon (indigo/violet badge with an orchestration hub-and-spoke glyph) as .svg, a 256px .png, and a multi-resolution .ico (16-256). versioninfo.json drives goversioninfo to embed the icon + metadata into the Windows binaries; the generated .syso objects are build artifacts and gitignored. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
76 lines
1.1 KiB
Plaintext
76 lines
1.1 KiB
Plaintext
# Binaries
|
|
/binaries/
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary
|
|
*.test
|
|
|
|
# Windows resource objects generated from versioninfo.json by goversioninfo
|
|
# (icon + version metadata). Regenerated during the build, not tracked.
|
|
*.syso
|
|
|
|
# Output of the go coverage tool
|
|
*.out
|
|
|
|
# Go workspace
|
|
go.work
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Data and runtime files
|
|
/data/
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
*.log
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Node modules (frontend)
|
|
node_modules/
|
|
.next/
|
|
out/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
|
|
# Embedded UI staging dir: track the placeholder and its own .gitignore so
|
|
# `go build` works without a prior frontend build, but ignore the large
|
|
# staged output produced by scripts/build.ps1.
|
|
!backend/internal/webui/dist/
|
|
backend/internal/webui/dist/*
|
|
!backend/internal/webui/dist/.gitignore
|
|
!backend/internal/webui/dist/index.html
|
|
|
|
# Dependency directories
|
|
vendor/
|
|
|
|
# Coverage
|
|
coverage/
|
|
*.lcov
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
|
|
# Local scratch space (design templates, experiments) - never committed
|
|
/Scratch/
|
|
scratch/
|