34 lines
515 B
Plaintext
34 lines
515 B
Plaintext
.git
|
|
.gitignore
|
|
.github/
|
|
.circleci/
|
|
.gitlab-ci.yml
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
|
|
# Never send local secrets or editor/dev-only files into the build context.
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
.air.toml
|
|
|
|
# Test and coverage artifacts are not needed for production image builds.
|
|
**/*_test.go
|
|
coverage.out
|
|
coverage.html
|
|
*.cover
|
|
*.log
|
|
|
|
# Exclude docs and directories not needed by the production Dockerfile.
|
|
docs/*.md
|
|
docs/collections/
|
|
docs/swagger.json
|
|
docs/swagger.yaml
|
|
docs/docs_test.go
|
|
deployments/
|
|
migrations/
|
|
tmp/
|
|
dist/
|
|
bin/
|