Files
2026-07-25 12:07:27 +02:00

53 lines
640 B
Plaintext

/result
.direnv/
config.yaml
/server
/vendor
pkg/metadatapb/
# Ignore all
*
# Unignore all with extensions
!*.*
# Unignore all dirs
!*/
### Above combination will ignore all files without extension ###
# Ignore files with extension `.class` & `.sm`
*.class
*.sm
# Ignore `bin` dir
bin/
# or
*/bin/*
# Ignore config.yaml
config.yaml
# Protobuf generated Go code — committed for reproducible builds
# Regenerate with: buf generate
# gen/
# Devenv
.devenv*
devenv.local.nix
devenv.local.yaml
# Runtime artifacts (downloads, FUSE mount, etc.)
dev/
# direnv
.direnv
# pre-commit
.pre-commit-config.yaml
# Added by cargo
/target