Skip to content

Commit 071dfe4

Browse files
committed
Add .gitignore file to exclude unnecessary files and directories from version control
1 parent 4142026 commit 071dfe4

2 files changed

Lines changed: 113 additions & 1 deletion

File tree

.claude/settings.local.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@
2121
"mcp__memory__add_observations",
2222
"mcp__memory__create_entities",
2323
"mcp__memory__create_relations",
24-
"mcp__memory__open_nodes"
24+
"mcp__memory__open_nodes",
25+
"mcp__filesystem__read_file",
26+
"mcp__filesystem__write_file"
2527
],
2628
"deny": [],
2729
"ask": []

.gitignore

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
# Git ignore file
2+
# Add files and directories that should not be tracked by Git
3+
4+
# Documentation and research folders (internal use)
5+
docs/
6+
*.md
7+
.claude/
8+
9+
# Dependencies
10+
node_modules/
11+
/bower_components
12+
13+
# Production build folders
14+
/dist/
15+
/build/
16+
17+
# Logs
18+
*.log
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*
22+
23+
# Runtime data
24+
pids
25+
*.pid
26+
*.seed
27+
*.pid.lock
28+
29+
# Coverage directory used by tools like istanbul
30+
coverage/
31+
.nyc_output
32+
33+
# Grunt intermediate storage
34+
.grunt
35+
36+
# Bower dependency directory
37+
bower_components/
38+
39+
# node-waf configuration
40+
.lock-wscript
41+
42+
# Compiled binary addons
43+
build/Release
44+
45+
# Dependency directories
46+
jspm_packages/
47+
48+
# TypeScript cache
49+
*.tsbuildinfo
50+
51+
# Optional npm cache directory
52+
.npm
53+
54+
# Optional eslint cache
55+
.eslintcache
56+
57+
# Optional REPL history
58+
.node_repl_history
59+
60+
# Output of 'npm pack'
61+
*.tgz
62+
63+
# Yarn Integrity file
64+
.yarn-integrity
65+
66+
# dotenv environment variables file
67+
.env
68+
.env.test
69+
70+
# parcel-bundler cache
71+
.cache
72+
.parcel-cache
73+
74+
# Next.js build output
75+
.next
76+
77+
# Nuxt.js build / generate output
78+
.nuxt
79+
dist
80+
81+
# Gatsby files
82+
.cache/
83+
public
84+
85+
# Storybook build outputs
86+
.out
87+
.storybook-out
88+
89+
# Temporary folders
90+
tmp/
91+
temp/
92+
93+
# OS generated files
94+
.DS_Store
95+
.DS_Store?
96+
._*
97+
.Spotlight-V100
98+
.Trashes
99+
ehthumbs.db
100+
Thumbs.db
101+
102+
# IDE files
103+
.vscode/
104+
.idea/
105+
*.swp
106+
*.swo
107+
*~
108+
109+
# Claude specific
110+
.claude/

0 commit comments

Comments
 (0)