- Add agent and server binaries to .gitignore - Remove temporary build artifacts from repository
38 lines
306 B
Plaintext
38 lines
306 B
Plaintext
# Build artifacts
|
|
/bin/
|
|
/dist/
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Generated Templ files
|
|
views/*_templ.go
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
*.iml
|
|
|
|
# Go
|
|
vendor/
|
|
.env
|
|
.env.local
|
|
|
|
# OS
|
|
Thumbs.db
|
|
.DS_Store
|
|
*.log
|
|
|
|
# Local configuration
|
|
config.local.yaml
|
|
.env.*.local
|
|
|
|
# Temporary build files
|
|
agent
|
|
server
|