-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
133 lines (116 loc) · 2.07 KB
/
.gitignore
File metadata and controls
133 lines (116 loc) · 2.07 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
# Python
__pycache__/
*.py[cod]
*.so
*.egg-info/
dist/
build/
.eggs/
# Environments
.env
.venv/
venv/
# IDE
.idea/
.vscode/
*.swp
# Media files (user provides their own)
data/input/
data/music/
data/output/
*.mp4
*.mp3
*.wav
*.mov
*.avi
# Logs
*.log
logs/
# Local business documentation (not tracked)
# Note: Backlog/strategy docs are private by policy and must not be tracked
/BACKLOG.md
docs/internal/
docs/archive/internal/
docs/market_analysis.md
docs/stability_report.md
docs/integration_status_report.md
docs/offloading_analysis.md
docs/LEGAL_IMPLEMENTATION.md
docs/marketing/monetization_strategy.md
docs/marketing/social_media_strategy.md
docs/archive/
docs/CLEANUP.md
docs/CLUSTER_OPTIMIZATION_PLAN.md
docs/CODE_HEALTH.md
docs/Developer_Build_Quickstart.md
docs/explanation/architecture/NETWORK_ROBUSTNESS_ANALYSIS.md
docs/MARKDOWNLINT_FIXES.md
docs/POLISH_PLAN.md
docs/REGISTRY_TROUBLESHOOTING.md
docs/STABILITY_PLAN.md
docs/STRATEGIC_BACKLOG.md
docs/TEST_INFRA.md
private/
secrets/
*.key
*.pem
# macOS
.DS_Store
# Temporary/Generated
gallery_montage_*
patch_files/
tmp/
tmp_test/
downloads/
local_downloads/
reproduce_*.py
verify_*.py
benchmark_results/cluster_benchmark.json
# Redis
dump.rdb
*.rdb
# Telemetry data
data/output/telemetry/
# Test fixtures (generated via make test-fixtures)
tests/fixtures/
__pycache__/
*.pyc
*.pyo
*.log
.DS_Store
*.swp
*.swo
*~
.pytest_cache/
.coverage
htmlcov/
dist/
build/
*.egg-info/
.venv/
venv/
.env
run_log.txt
gallery_montage_*.mp4
# Security & Secrets
*.crt
*.key
*.pem
cgpu_*.js
# Temporary/Debug
debug-*.yaml
*.report.html
worker-deployment-*.yaml
tmp-kubeconfig
# Local deployment overlay (user-specific registry config)
deploy/k3s/overlays/local/
# Cluster-specific global config (contains internal IPs)
deploy/k3s/config-global.yaml
deploy/k3s/base/cluster-config.env
.venv-ci/
# Shell artifact files (broken CI/job template variable interpolation)
# These are empty files with shell-fragment names created by broken scripts.
# Clean up with: find . -maxdepth 1 -name ';*' -delete
;*
# Local-only Docker variant (QSV experiments)
Dockerfile.qsv