- Remove committed Go binaries:
backend/bin/api-server (~18 MB)
backend/cmd (~18 MB)
backend/api/rest/cmd/api-server (~18 MB)
- Remove scratch / build output dirs from the repo:
out/, cache/, test-results/
- Extend .gitignore to cover these paths plus playwright-report/
and coverage/ so they don't drift back in.
Total artifact weight removed: ~54 MB of binaries + small scratch files.
65 lines
670 B
Plaintext
65 lines
670 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
vendor/
|
|
|
|
# Optional local Mermaid (see frontend/public/thirdparty/README.md)
|
|
frontend/public/thirdparty/mermaid.min.js
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
.next/
|
|
*.tsbuildinfo
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Go
|
|
*.test
|
|
*.out
|
|
go.work
|
|
|
|
# Compiled Go binaries (built artifacts, not source)
|
|
backend/bin/
|
|
backend/api/rest/cmd/api-server
|
|
backend/cmd
|
|
|
|
# Tooling / scratch directories
|
|
out/
|
|
cache/
|
|
test-results/
|
|
playwright-report/
|
|
.playwright/
|
|
coverage/
|