-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
77 lines (68 loc) · 1.34 KB
/
Copy path.gitignore
File metadata and controls
77 lines (68 loc) · 1.34 KB
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
68
69
70
71
72
73
74
75
76
77
# Private environment and local runtime config
deploy/env/elvern.env
deploy/env/*.env
!deploy/env/*.example
# Local databases, logs, and runtime state
backend/elvern.db
backend/data/
backend/data/*.db
backend/data/*.db*
backend/data/*.sqlite*
backend/data/*.log
backend/data/url_prefix_state.json
backend/data/argon2_calibration.json
backend/data/elvern.db
backend/data/elvern.db-shm
backend/data/elvern.db-wal
backend/data/assistant_uploads/
backend/data/backups/
backend/data/poster_display_cache/
backend/data/helper_releases/
backend/data/transcodes/
backend/data/playback_diagnostics/
.runtime/
# Python
.venv/
backend/.venv/
__pycache__/
**/__pycache__/
*.py[cod]
**/*.pyc
*.pyo
*.pyd
.pytest_cache/
backend/tests/.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
# Frontend
frontend/node_modules/
frontend/dist/
frontend/test-results/
frontend/playwright-report/
frontend/ui-screenshots/
# Desktop helper build outputs
clients/desktop-vlc-opener/artifacts/
clients/desktop-vlc-opener/**/bin/
clients/desktop-vlc-opener/**/obj/
# Developer-only benchmark artifacts
dev/artifacts/
# Insider-only archives / unpublished analysis exports
tmp/
data/
LLM/
/Elvern-ui-redesign/
# Local/private security review notes
# Editor / local agent state
.vscode/
.agents/
.claude/
.codex/
.idea/
# OS / shell junk
.DS_Store
Thumbs.db
Desktop.ini
*.swp
*.swo