-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
68 lines (58 loc) · 1.19 KB
/
.gitignore
File metadata and controls
68 lines (58 loc) · 1.19 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
# ─── Python ───
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
dist/
build/
*.egg
# ─── Virtual Environment ───
.venv/
.VENV/
venv/
env/
# ─── Environment Variables ───
.env
# ─── IDE / Editor ───
.vscode/
.idea/
*.swp
*.swo
*~
# ─── Test Artifacts ───
.pytest_cache/
htmlcov/
.coverage
*.cover
test_output.txt
test_results.txt
e2e_output.txt
# ─── Runtime Generated (regenerated each pipeline run) ───
database/compliance_rules.db
data/chroma_db/
data/processed/
data/feedback/
outputs/evaluations/
outputs/violations/
outputs/review/
outputs/reports/
outputs/audit/
outputs/flags/
outputs/extracted_rules.json
# ─── Large Data Files (exceed GitHub 100MB limit) ───
csv/*.csv
# ─── Generated Test Files ───
generate_test_pdf.py
generate_industrial_violation_pdf.py
data/company_data/ACME_Compliance_Report_2026.pdf
data/company_data/Industrial_Compliance_Violations_Report.pdf
# ─── Uploads & Recycle Bin (runtime temp) ───
uploads/
recyclebin/
# ─── Company data CSVs (large / user-uploaded) ───
data/company_data/*.csv
# ─── OS Files ───
.DS_Store
Thumbs.db
desktop.ini