63 lines
579 B
Plaintext
63 lines
579 B
Plaintext
# Rust build artifacts
|
|
/target
|
|
**/target/
|
|
|
|
# Rust IDE and tooling
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.env.production
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Data and certificates
|
|
data/
|
|
cert/
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
.docker/
|
|
|
|
# Agent configs
|
|
.claude/
|
|
.codex/
|
|
.agent/
|
|
.agents/
|
|
CLAUDE.md
|
|
AGENTS.md
|
|
migrate.sh
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
.tmp/
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*~
|