diff options
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..31b0125 --- /dev/null +++ b/.gitignore @@ -0,0 +1,78 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib +veilith +launcher +launcher.exe + +# Allow source files (override binary exclusion) +!veilith-*.go + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool +*.out +coverage.txt +coverage.html + +# Go workspace file +go.work +go.work.sum + +# Dependency directories +vendor/ + +# Build directories +build/ +dist/ +bundle/ +release/ + +# IDE and editor files +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store + +# OS files +Thumbs.db +ehthumbs.db +Desktop.ini + +# Veilith specific +.veilith/ +veilith-data/ +portable-data/ +*.db +*.db-shm +*.db-wal + +# Cryptographic materials (NEVER commit!) +*.key +*.pem +*.p12 +*.pfx +*_rsa +*_ed25519 +id_rsa* +id_ed25519* + +# Logs +*.log +logs/ + +# Temporary files +*.tmp +*.temp +.cache/ + +# Backup files +*.bak +*.backup +*.old |
