87 lines
827 B
Plaintext
87 lines
827 B
Plaintext
# Git
|
|
.git/
|
|
.gitignore
|
|
.github/
|
|
|
|
# Node.js
|
|
node_modules/
|
|
**/node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
out/
|
|
*.tsbuildinfo
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
*.env
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Cache directories
|
|
.cache/
|
|
.parcel-cache/
|
|
|
|
# Documentation that's not needed for build
|
|
docs/
|
|
README.md
|
|
*.md
|
|
|
|
# CI/CD
|
|
ci/
|
|
|
|
# Plugin build artifacts
|
|
plugins/*/dist/
|
|
|
|
# Test directories
|
|
tests/
|
|
test/
|
|
__tests__/
|
|
|
|
# Not needed for build
|
|
cli/
|
|
terraform/
|
|
helm-charts/
|
|
npx/
|
|
nix/
|
|
recipes/
|
|
examples/
|
|
.claude/
|
|
pulse.yaml
|
|
flake.nix
|
|
|
|
# Temporary build artifacts
|
|
tmp/
|
|
**/tmp/
|
|
transports/bifrost-http/tmp/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
.tmp/
|
|
|
|
# Go workspaces (local only)
|
|
go.work
|
|
go.work.sum |