template-monorepo/.gitignore

73 lines
1.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# =========================
# Go
# =========================
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
coverage.txt
coverage.html
/vendor/
# 專案編譯產物(根目錄 binary 名稱與 module 相同時)
/gateway
# =========================
# go-doc / 工具 binary
# =========================
generate/doc-generate/bin/
# =========================
# OpenAPI 產物make gen-doc
# 若要把 gateway.yaml 提交給前端,請註解下面這段
# =========================
docs/openapi/*.yaml
docs/openapi/*.json
!docs/openapi/.gitkeep
# =========================
# 設定與機密(勿提交真實密鑰)
# =========================
.env
.env.*
!.env.example
etc/*-local.yaml
etc/*.local.yaml
# =========================
# IDE / 編輯器
# =========================
.idea/
.vscode/
*.swp
*.swo
*~
.cursor/
# =========================
# 作業系統
# =========================
.DS_Store
.AppleDouble
.LSOverride
Thumbs.db
ehthumbs.db
Desktop.ini
# =========================
# 日誌與暫存
# =========================
*.log
logs/
tmp/
temp/
# =========================
# Go workspace本機多模組開發用
# =========================
go.work
go.work.sum