-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
150 lines (128 loc) · 3.55 KB
/
Copy path.gitignore
File metadata and controls
150 lines (128 loc) · 3.55 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# =============================================================================
# Azure Support Agent — .gitignore
# =============================================================================
# --- Secrets & environment ---------------------------------------------------
.env
.env.*
!.env.example
*.local
*.key
secret.key
*.pem
*.pfx
*.p12
*.crt
# --- Runtime data / state volumes --------------------------------------------
# Backend JSON registries, SQLite DB, caches, OAuth profiles, evidence, etc.
.data/
**/.data/
*.db
*.db-shm
*.db-wal
*.sqlite
*.sqlite3
# --- Deployment / infra scratch (machine-specific identifiers) ---------------
.acrname
.stgname
.imgdigest
uvicorn.out.log
uvicorn.err.log
# --- Internal / non-distributable assets -------------------------------------
sap.txt
# Personal build/deploy runbook (operational notes, invoked as a skill — not product code).
DEPLOY_RUNBOOK.md
# Internal UI test plan (QA working notes — not product documentation).
docs/UI_TEST_PLAN.md
# Full-suite test findings (QA working notes / bug documentation — not distributable).
docs/test-findings/
backend/scripts/_insights_e2e.ps1
backend/scripts/_insights_probe.ps1
backend/scripts/_fullsuite_*.ps1
# Scratch test harnesses (underscore-prefixed, QA working scripts — not distributable).
backend/scripts/_*.py
backend/scripts/_*.txt
# Internal data-retention engineering plan (design working notes — not product docs).
docs/DATA_RETENTION_PLAN.md
# Internal UX engineering plan (design working notes — not product docs).
docs/UX_ADVANCED_PLAN.md
# Throwaway UX audit screenshots (Playwright captures — not distributable).
.uxshots/
# Spreadsheets (workbooks, exports, scratch) — not distributable.
*.xlsx
# --- Presentation / deck working files (non-distributable) -------------------
# The pitch deck, its product screenshots, and its build scripts are internal.
docs/deck-assets/
docs/_build_deck.py
docs/_validate.py
# --- Python ------------------------------------------------------------------
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
*.egg
.eggs/
build/
develop-eggs/
.venv/
venv/
env/
ENV/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
.coverage.*
htmlcov/
.tox/
# --- Node / frontend ---------------------------------------------------------
node_modules/
dist/
dist-ssr/
.vite/
*.tsbuildinfo
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# --- Playwright / browsers ---------------------------------------------------
playwright-report/
test-results/
.playwright/
# --- Local security scan reports (gitleaks/trivy/zap/etc.) --------------------
.security/
# --- Local-only E2E test suite -------
/e2e/
# --- Editors / OS ------------------------------------------------------------
.vscode/
.idea/
.DS_Store
Thumbs.db
*.swp
*.swo
# --- Logs --------------------------------------------------------------------
*.log
logs/
# --- Misc temp ---------------------------------------------------------------
*.tmp
*.bak
*.pptx
# --- Throwaway deck-inspection + render scratch (not app code) ---------------
backend/_deck_*.py
docs/_build_usecases.py
docs/_uc_helpers.py
docs/_usecases_build.py
docs/_render.py
docs/usecase-assets/
docs/usecase-render/
docs/_build_journey_slides.py
docs/_journey_render/
# --- Per-section performance/UX improvement plans (review scratch, not shipped) ---
docs/improvement-plans/
# --- Documentation regeneration agent scratch/build output ------------------
# Public documentation remains tracked; workspace agent customization stays local.
.github/
.docs-work/
docs/.jekyll-cache/
docs/.sass-cache/
docs/_site/
docs/.bundle/