Files
football/.gitignore
Charles N Wyble 19bf4ec77d chore: Update .gitignore for build artifacts
Adds patterns to ignore build-tmp/, *.log, and *.key files
which are generated during the build process and should not be
committed to version control.

💘 Generated with Crush

Assisted-by: Gemini 2.5 Flash via Crush <crush@charm.land>
2026-01-20 10:57:50 -05:00

47 lines
475 B
Plaintext

# Build output
output/
*.img
*.qcow2
# Chroot directory (created during build)
chroot/
# Mount points
mount/
# WireGuard keys (never commit these!)
client-private.key
client-public.key
server-private.key
server-public.key
# Temporary files
*.tmp
*.bak
*~
# IDE/editor files
.vscode/
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Build artifacts
*.deb
*.tar.gz
*.tar.xz
# Build temporary directory
build-tmp/
# Log files
*.log
# Test keys (WireGuard)
*.key