Adds OS files, editor artifacts, Node modules, secrets, Go build artifacts, and frontend build output to the root gitignore. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
45 lines
409 B
Plaintext
45 lines
409 B
Plaintext
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editors
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
*.bak
|
|
.idea/
|
|
.vscode/
|
|
*.sublime-*
|
|
|
|
# Node
|
|
node_modules/
|
|
|
|
# Environment / secrets
|
|
.env
|
|
.env.*
|
|
*.pem
|
|
*.key
|
|
|
|
# Go build artifacts
|
|
backend-go/bin/
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.test
|
|
*.out
|
|
vendor/
|
|
tmp/
|
|
|
|
# Frontend build output
|
|
frontend/dist/
|
|
frontend/build/
|
|
frontend/.vite/
|
|
|
|
# Prompts directory (local tooling, not part of the project)
|
|
Prompts/
|
|
|
|
# Logs
|
|
*.log
|