49 lines
642 B
Plaintext
49 lines
642 B
Plaintext
# Node / Electron
|
|
node_modules/
|
|
.pnpm/
|
|
dist/
|
|
out/
|
|
build/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Go
|
|
.go/
|
|
bin/
|
|
*.test
|
|
*.out
|
|
vendor/
|
|
# compiled daemon binary
|
|
/backend/backend
|
|
agent-orchestrator.yaml
|
|
|
|
# Backend runtime data artifacts (SQLite store + WAL, CDC event log).
|
|
# Created at AO_DATA_DIR (outside the repo by default); ignored here so a
|
|
# data dir pointed at the tree never gets committed.
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
session-events.jsonl
|
|
session-events.jsonl.*
|
|
|
|
# Agent Orchestrator local session state
|
|
.ao/
|
|
|
|
# Environment
|
|
.direnv/
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Editor / IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|