-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path.gitignore
More file actions
67 lines (54 loc) · 977 Bytes
/
Copy path.gitignore
File metadata and controls
67 lines (54 loc) · 977 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
63
64
65
66
67
# Leetha project ignores
# Python bytecode
__pycache__/
*.pyc
*.pyo
*.egg-info/
*.egg
# Build output
build/
dist/
# ...except the compiled dashboard, which ships inside the Python package.
# Leetha is installed from git rather than PyPI, so if this is not committed
# there is no path by which a user gets a working web UI without installing
# bun and building it themselves.
!src/leetha/ui/web/dist/
!src/leetha/ui/web/dist/**
*.whl
# Virtual environments
.venv/
venv/
env/
# Testing & coverage
.pytest_cache/
.coverage
htmlcov/
coverage.xml
# Lint / type check caches
.ruff_cache/
.mypy_cache/
# Editor state
.idea/
.vscode/
*.swp
*.swo
*~
# Claude Code
.claude/
# OS metadata
.DS_Store
Thumbs.db
# Git worktrees
.worktrees/
# Runtime data (synced databases, SQLite)
*.db
*.sqlite
*.jsonl
# Environment / secrets
.env
.env.*
# Implementation plans (local only)
docs/plans/
# Frontend build deps (built assets are committed)
frontend/node_modules/
sensor/target/