Prevents Fusion daemon's sqlite db, task logs, and worktree dirs from leaking into product commits. Agent personas / project memory survive as untracked files; can be force-added later if desired.
51 lines
491 B
Plaintext
51 lines
491 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnpm-store/
|
|
|
|
# Build outputs
|
|
dist/
|
|
.next/
|
|
.turbo/
|
|
out/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Backups
|
|
backups/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker secrets
|
|
docker/.env
|
|
|
|
# PM2
|
|
.pm2/
|
|
|
|
# Coverage
|
|
coverage/
|
|
|
|
# Temp
|
|
tmp/
|
|
temp/
|
|
|
|
# Fusion runtime state (task db, agent memory, config, sqlite WAL)
|
|
# Tracked agent personas / project memory can be force-added if desired.
|
|
.fusion/
|
|
.worktrees/
|