Files
goplt/.gitignore
0x1d bbd4909fc8
Some checks failed
CI / Test (pull_request) Failing after 13s
CI / Lint (pull_request) Failing after 12s
CI / Build (pull_request) Failing after 3s
CI / Format Check (pull_request) Failing after 2s
Remove generated files from git tracking
- Add api/proto/generated/ to .gitignore (protobuf generated files)
- Add internal/ent/ and ent/ to .gitignore (Ent ORM generated files)
- Remove all generated files from git tracking
- Generated files can be regenerated with 'make generate-proto' and 'make generate-ent'
2025-11-06 22:15:08 +01:00

74 lines
806 B
Plaintext

# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
bin/
dist/
platform
/api-gateway
/audit-service
/identity-service
/auth-service
/authz-service
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Dependency directories
vendor/
# Go workspace file
go.work
# IDE files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Build artifacts
build/
*.a
*.o
# Test coverage files
coverage.txt
coverage.html
*.coverprofile
# Environment-specific files
.env
.env.local
.env.*.local
# Logs
*.log
logs/
# Temporary files
tmp/
temp/
# Documentation build artifacts
docs/site/
docs/.mkdocs_cache/
# OS-specific
Thumbs.db
.direnv/
# Generated protobuf files
api/proto/generated/
# Generated Ent ORM files
internal/ent/
ent/