forked from alexeykrol/claude-code-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
53 lines (46 loc) · 777 Bytes
/
Copy path.gitignore
File metadata and controls
53 lines (46 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Claude Code — personal files (never committed)
.claude/settings.local.json
.claude/logs/
.claude/.tool-counter
CLAUDE.local.md
# Framework metafiles — for public/shared repos (repo_access=public or private-shared)
# Uncomment these lines if your project is shared with others:
# >>> framework-public-ignore
# .claude/
# CLAUDE.md
# manifest.md
# AGENTS.md
# experiments/
# drafts/
# scratch/
# analysis/
# research/
# notes/
# <<< framework-public-ignore
# Environment
.env
.env.local
.env.production
# OS
.DS_Store
Thumbs.db
# Dependencies
node_modules/
__pycache__/
*.pyc
.venv/
venv/
# Build
dist/
dist-release/
build/
*.egg-info/
# Test artifacts
test-results/
playwright-report/
coverage/
.pytest_cache/
# Database (local development)
*.db
*.sqlite
*.sqlite3