b1f8ac453b
feat!: base template * first bit of templating * codeowners * linuxbased * restart * baseline project * add grpc api and basic integration test * startqueue * queueMsg * splitscripts * migrations * queueintegrationtest * gateway
78 lines
1.0 KiB
Plaintext
78 lines
1.0 KiB
Plaintext
# These are some examples of commonly ignored file patterns.
|
|
# You should customize this list as applicable to your project.
|
|
# Learn more about .gitignore:
|
|
# https://www.atlassian.com/git/tutorials/saving-changes/gitignore
|
|
|
|
# Ignore the binary files generated by `go build`
|
|
/main
|
|
|
|
# Dependency directories (uncomment if using vendoring)
|
|
# vendor/
|
|
|
|
# Ignore Go workspace files
|
|
*.swp
|
|
*.swo
|
|
|
|
# Output of the go coverage tool
|
|
*.out
|
|
out/
|
|
coverage/
|
|
cover
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Node artifact files
|
|
node_modules/
|
|
dist/
|
|
|
|
# Compiled Java class files
|
|
*.class
|
|
|
|
# Compiled Python bytecode
|
|
*.py[cod]
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
# Package files
|
|
*.jar
|
|
|
|
# Maven
|
|
target/
|
|
dist/
|
|
|
|
# JetBrains IDE
|
|
.idea/
|
|
*.iml
|
|
|
|
# Unit test reports
|
|
TEST*.xml
|
|
|
|
# VS Code
|
|
.vscode/
|
|
|
|
# Generated by MacOS
|
|
.DS_Store
|
|
|
|
# Generated by Windows
|
|
Thumbs.db
|
|
|
|
# Applications
|
|
*.app
|
|
*.exe
|
|
*.war
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Large media files
|
|
*.mp4
|
|
*.tiff
|
|
*.avi
|
|
*.flv
|
|
*.mov
|
|
*.wmv
|
|
|