-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
53 lines (45 loc) · 801 Bytes
/
Copy path.gitignore
File metadata and controls
53 lines (45 loc) · 801 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
# Environment & secrets — never commit
.env
*.env
incremental_pipeline_plan.md.resolved
# Python
.venv/
venv/
env/
env1/
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
# Pipeline runtime outputs — generated, not source-controlled
data/master_reddit_data.json
data/reddit_data.json
data/ai_input_minimal.json
data/ai_analysis_output.json
data/processed_ids.log
data/reported_ids.log
data/south_asian_*.json
data/pipeline.db
data/pipeline.db-wal
data/pipeline.db-shm
# Reports — generated Word documents
# Reports — generated Word documents
reports/*.docx
!reports/.gitkeep
# Vector Database RAG
data/chroma_db/
# Jupyter
notebooks/.ipynb_checkpoints/
.ipynb_checkpoints/
# macOS
.DS_Store
.AppleDouble
.LSOverride
# Pytest / coverage
.pytest_cache/
.coverage
htmlcov/
# IDE
.vscode/
.idea/