Added to .gitignore to prevent future commits of build artifacts. These files were never meant to be in the repo. Co-Authored-By: Paperclip <noreply@paperclip.ing>
36 lines
234 B
Plaintext
36 lines
234 B
Plaintext
# Go
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.test
|
|
*.out
|
|
go.work
|
|
|
|
# Build
|
|
/bin
|
|
/dist
|
|
/data
|
|
|
|
# Runtime data
|
|
data/
|
|
*.db
|
|
coverage.out
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
/hatch
|
|
hatch.exe
|
|
site/*.bak
|
|
|
|
# Node
|
|
node_modules/
|
|
.next/
|
|
out/
|