76 lines
678 B
Plaintext
76 lines
678 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Rust build artifacts
|
|
target/
|
|
**/target/
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
bun.lockb
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
|
|
# Environment and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Docker
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Documentation
|
|
*.md
|
|
LICENSE
|
|
doc/
|
|
|
|
# Test and CI
|
|
tests/
|
|
__tests__/
|
|
*.test.*
|
|
*.spec.*
|
|
.github/
|
|
.gitlab/
|
|
.circleci/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
.tmp/
|
|
|
|
# Certificates (use secrets in production)
|
|
cert/
|
|
|
|
# Data directories
|
|
data/
|
|
|
|
# Agent configs
|
|
.agent/
|
|
.agents/
|
|
.claude/
|
|
CLAUDE.md
|
|
AGENTS.md |