Files
nanoclaw/.gitignore
Ira Abramov f894b5b1d0 chore: ignore .env* variants in addition to .env
Catches .env.local, .env.test, .env.production, and other variant files
that should never be committed alongside the base .env.
2026-04-20 12:11:35 +03:00

42 lines
541 B
Plaintext

# Dependencies
node_modules/
.npm-cache/
# pnpm content-addressable store (created when running in sandbox mode)
.pnpm-store/
# Build output
dist/
# Local data & auth
store/
data/
logs/
# Groups - only track base structure and specific CLAUDE.md files
groups/*
!groups/main/
!groups/global/
groups/main/*
groups/global/*
!groups/main/CLAUDE.md
!groups/global/CLAUDE.md
# Secrets
*.keys.json
.env
.env*
# Temp files
.tmp-*
# OS
.DS_Store
# IDE
.idea/
.vscode/
# Skills system (local per-installation state)
.nanoclaw/
agents-sdk-docs