-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
100 lines (89 loc) · 2.65 KB
/
Copy path.gitignore
File metadata and controls
100 lines (89 loc) · 2.65 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# --- Python ----------------------------------------------------------
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.python-version
# --- Virtualenvs / packaging -----------------------------------------
.venv/
venv/
# --- Test / lint caches ----------------------------------------------
.pytest_cache/
.mypy_cache/
.ruff_cache/
.tox/
.coverage
.coverage.*
htmlcov/
# --- Build artifacts -------------------------------------------------
# dist/app.py is the single-file ship target — tracked, regenerated by
# scripts/build_single_file.py.
# dist/airgap/ is the composed v2.0 air-gap deploy folder produced by
# scripts/package_airgap.py — local-only, never committed.
dist/airgap/
# --- Runtime data (user-specific, not source) ------------------------
# SQLite metadata DB and FAISS vector index live under /tmp by default
# (see config/config.yaml). The incidents/ directory was removed; if a
# config still references it, the path is the user's responsibility.
# --- Secrets ---------------------------------------------------------
.env
.env.*
!.env.example
# --- Editor / IDE ----------------------------------------------------
.vscode/
.idea/
*.swp
*.swo
*~
# --- OS scratch ------------------------------------------------------
.DS_Store
Thumbs.db
# --- Logs / temp -----------------------------------------------------
*.log
.cache/
# --- Claude tooling artifacts ----------------------------------------
AGENTS.md
ASR.md
.claude/ralph-loop.local.md
.claude/worktrees/
.plan/
# Tracked docs are explicitly listed below; everything else under docs/
# is Claude scratch (plans, brainstorm output, etc) and stays gitignored.
# - DESIGN.md: consolidated architecture + decision log.
# - AIRGAP_INSTALL.md: Phase 14 (HARD-02) air-gap install path.
# - DEVELOPMENT.md: Phase 16 (BUNDLER-01) contributor workflow.
# - 00-…-11-…: brownfield documentation set (per-topic).
# - adr/*.md: Architecture Decision Records.
docs/*
!docs/DESIGN.md
!docs/AIRGAP_INSTALL.md
!docs/DEVELOPMENT.md
!docs/00-project-overview.md
!docs/01-local-setup.md
!docs/02-architecture.md
!docs/03-code-map.md
!docs/04-main-flows.md
!docs/05-configuration.md
!docs/06-data-model.md
!docs/07-integrations.md
!docs/08-testing.md
!docs/09-build-deploy-release.md
!docs/10-known-risks-and-todos.md
!docs/11-agent-handoff.md
!docs/RELEASE.md
!docs/REACT_UI_PARITY.md
!docs/adr/
!docs/adr/*.md
REVIEW_*.md
review_*.md
.planning/
# Dev integration test driver (out-of-repo tool, runs against live UI).
scripts/integration_scenarios.py
# Coverage / CI artefacts
coverage.xml
junit.xml
# React UI build artifacts (Phase 1+)
web/node_modules
web/dist
web/playwright-report
web/test-results