Catches .env.local, .env.test, .env.production, and other variant files that should never be committed alongside the base .env.
42 lines
541 B
Plaintext
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
|