50 lines
534 B
Plaintext
50 lines
534 B
Plaintext
# Ignore development and build artifacts
|
|
.git
|
|
.gitignore
|
|
README.md
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose.yml
|
|
|
|
# Go build artifacts
|
|
bin/
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.test
|
|
*.out
|
|
|
|
# Generated protobuf files (will be generated in container)
|
|
proto/**/*.pb.go
|
|
proto/**/*.pb.gw.go
|
|
|
|
# Buf files
|
|
buf.lock
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Node modules (if any)
|
|
node_modules/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/ |