Files
agentic-coding-workflow/.gitignore
T
2026-06-09 21:22:28 +08:00

47 lines
705 B
Plaintext

# Go
/bin/
/dist/
*.exe
coverage.out
coverage.html
# Env / secrets
.env
.env.local
# Web
/web/node_modules/
/web/dist/
/web/*.tsbuildinfo
/web/*.js
!/web/eslint.config.js
/web/*.d.ts
/web/src/**/*.js
/web/src/**/*.d.ts
/web/test/**/*.js
/web/test/**/*.d.ts
# Editor
.idea/
.vscode/
*.swp
# OS
.DS_Store
Thumbs.db
# Local dev data
/data/
# Internal docs (specs / plans should never be committed)
/docs/
# Local worktrees (created by superpowers:using-git-worktrees skill)
/.worktrees/
/worktrees/
# Embedded SPA dist: ignore real built artifacts but keep the .gitkeep
# placeholder so `go build ./cmd/server` succeeds before `make build` runs.
/cmd/server/web/dist/*
!/cmd/server/web/dist/.gitkeep