37 lines
321 B
Plaintext
37 lines
321 B
Plaintext
|
# Git files
|
||
|
.git
|
||
|
.gitignore
|
||
|
|
||
|
# Documentation
|
||
|
README.md
|
||
|
CLAUDE.md
|
||
|
|
||
|
# Local development files
|
||
|
user/
|
||
|
instance_*
|
||
|
local-dev.sh
|
||
|
|
||
|
# Logs
|
||
|
*.log
|
||
|
logs/
|
||
|
|
||
|
# Temporary files
|
||
|
tmp/
|
||
|
temp/
|
||
|
.tmp
|
||
|
|
||
|
# IDE files
|
||
|
.vscode/
|
||
|
.idea/
|
||
|
*.swp
|
||
|
*.swo
|
||
|
|
||
|
# OS files
|
||
|
.DS_Store
|
||
|
Thumbs.db
|
||
|
|
||
|
# Node.js
|
||
|
node_modules/
|
||
|
npm-debug.log*
|
||
|
yarn-debug.log*
|
||
|
yarn-error.log*
|