* Fix autostart test to work in nix sandbox * Break out a default.nix to make consuming this package easier The flake is great for local development, but creates overhead and duplication when pulling it in on another machine. With the default.nix, the flake continues to work as before, but consumers can callPackage directly with their own nixpkgs. * Break out a default.nix to make consuming this package easier The flake is great for local development, but creates overhead and duplication when pulling it in on another machine. With the default.nix, the flake continues to work as before, but consumers can callPackage directly with their own nixpkgs.
51 lines
565 B
Plaintext
51 lines
565 B
Plaintext
# Binaries
|
|
/beads
|
|
/bd
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binaries
|
|
*.test
|
|
*.out
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Claude Code
|
|
.claude/settings.local.json
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# SQLite databases (now using JSONL as source of truth)
|
|
*.db
|
|
*.db-journal
|
|
*.db-wal
|
|
*.db-shm
|
|
|
|
# Daemon runtime files
|
|
.beads/daemon.log
|
|
.beads/daemon.pid
|
|
.beads/bd.sock
|
|
|
|
# .beads directory files (keep JSONL only)
|
|
.beads/.gitignore
|
|
.beads/db.sqlite
|
|
.beads/bd.db
|
|
|
|
# Keep JSONL exports (source of truth for git)
|
|
!.beads/*.jsonl
|
|
|
|
# Ignore nix result
|
|
result
|