64 lines
902 B
Plaintext
64 lines
902 B
Plaintext
# If you prefer the allow list template instead of the deny list, see community template:
|
|
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
|
|
#
|
|
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
__debug*
|
|
*.pdb
|
|
./server
|
|
./metagen
|
|
./migrator
|
|
|
|
# editor stuff
|
|
*.sublime-workspace
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
|
|
# Dependency directories (remove the comment below to include it)
|
|
# vendor/
|
|
|
|
# User Uploads
|
|
uploads/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# configuration files
|
|
config.json
|
|
metagen_config.json
|
|
|
|
# build
|
|
.build
|
|
.DS_Store
|
|
|
|
# metaprogram files
|
|
*.metagen.go
|
|
*.metagen.css
|
|
|
|
.metagen
|
|
|
|
# jet autogenerated models/table structs
|
|
.jet/
|
|
|
|
server
|
|
!./cmd/server
|
|
|
|
#env / secrets
|
|
.env
|
|
|
|
#database
|
|
*.sqlite
|
|
*.db
|
|
|
|
# jet generator
|
|
tools/jet-2.12.0/jet
|
|
tools/jet-2.12.0/jet.exe
|