-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy path.gitignore
More file actions
62 lines (48 loc) · 669 Bytes
/
Copy path.gitignore
File metadata and controls
62 lines (48 loc) · 669 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
54
55
56
57
58
59
60
61
62
# Python
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
*.egg
# Environment
.env
.env.*
!.env.example
# Data & reports (generated)
data/
reports/
feedback/
# Deploy (removed — local project only)
deploy/
# Alembic config (contains DB URL)
alembic.ini
# Frontend
frontend/node_modules/
frontend/dist/
# Logs
logs/
# MCP config (local paths)
.mcp.json
# Build cache
*.tsbuildinfo
# Marketing (local only)
marketing/
# Claude Code
.claude/
# Research notes (runtime artifacts, not source code)
research_notes/
docs/factor_research/
# IDE
.vscode/
.idea/
*.swp
*.swo
.DS_Store
engine/target/
engine/Cargo.lock
# Database
*.db
# Coverage
.coverage
htmlcov/