-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy path.gitignore
More file actions
236 lines (207 loc) · 4.57 KB
/
.gitignore
File metadata and controls
236 lines (207 loc) · 4.57 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
# ==========================================
# Python & Compilation
# ==========================================
__pycache__/
*.py[cod]
*$py.class
*.so
*.pyd
*.dll
*.pdb
# PyInstaller / build artifacts
build/
dist/
*.spec
# ==========================================
# Environments & Configuration
# ==========================================
.env
.venv/
env/
venv/
ENV/
# Distribution / Packaging
develop-eggs/
downloads/
eggs/
.eggs/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# ==========================================
# Testing & Code Quality
# ==========================================
htmlcov/
.tox/
.coverage
.coverage.*
.cache/
nosetests.xml
coverage.xml
*.cover
*.log
.mypy_cache/
.pytest_cache/
.dmypy.json
dmypy.json
# ==========================================
# Jupyter / Notebooks
# ==========================================
.ipynb_checkpoints/
# ==========================================
# Documentation
# ==========================================
docs/_build/
# ==========================================
# IDE & System Files
# ==========================================
.vscode/
.idea/
.DS_Store
Thumbs.db
Desktop.ini
# ==========================================
# Node / Frontend
# ==========================================
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# common frontend build dirs
frontend/dist/
frontend/build/
tauri-ui/dist/
tauri-ui/build/
# ==========================================
# Rust / Tauri
# ==========================================
# Cargo builds
**/target/
src-tauri/target/
# Tauri generated build artifacts / bundles (do not commit installers)
src-tauri/target/**/bundle/
src-tauri/target/**/nsis/
src-tauri/target/**/msi/
# Sidecar binaries created by pipeline (generated)
src-tauri/binaries/
binaries/
# ==========================================
# Installer outputs (generated)
# ==========================================
*.msi
*.exe
*.dmg
*.app
*.deb
*.rpm
*.AppImage
# Whitelist specific .exe files needed for Tauri build
!frontend/input_record/install-interception.exe
!src-tauri/drivers/**/*.exe
# Whitelist Interception driver runtime libraries shipped with the
# installer (oblitum/Interception v1.0.1). The default *.dll ignore
# above would otherwise drop them from version control.
!src-tauri/drivers/interception/library/**/*.dll
!src-tauri/drivers/interception/library/**/*.lib
!src-tauri/drivers/interception/library/**/*.h
# ==========================================
# Project Specific (Data & Recordings)
# ==========================================
# Frontend / Recorder Data (generated)
frontend/recorder/**
frontend/dev/atbswp/**
# If this is a real source file you need, remove this line:
frontend/video_record/keyboard.py
# Backups and Temporary Data
backup/
versions/0.01/backup/
versions/0.01/backup/0-collect_data(testing).ipynb
# Logs & Temporary Folders
log/
remove/
experimental/
model_test/
classes/
clean/
# ==========================================
# Training / ML artifacts (big, generated)
# ==========================================
runs/
wandb/
mlruns/
lightning_logs/
tensorboard/
checkpoints/
*.ckpt
*.pt
*.pth
*.onnx
*.tflite
*.h5
*.npz
*.npy
*.tfrecord
# Large datasets archives (general)
data/
dataset/
datasets/
recordings/
captures/
replays/
*.zip
*.7z
*.tar
*.tar.gz
# Your known huge CSVs (keep explicit)
versions/0.01/data_reduced/x_training_data.csv
versions/0.01/data_reduced/y_training_data.csv
versions/0.01/data_reduced/undersampling/x_training_data.csv
versions/0.01/data_reduced/undersampling/y_training_data.csv
versions/0.01/clean_reduced/
# ML model data files (large, generated)
versions/0.01/model/
versions/0.01/model_mmo0/
versions/0.01/model_mmo1/
# Large binary / media files
versions/0.01/img/video.mp4
versions/0.01/pyvjoy/vJoySetup.exe
frontend/assets/backup/
# Large media formats
*.avi
*.mp4
*.gif
*.data-00000-of-00001
# ==========================================
# Safety: DO NOT ignore docs images globally
# ==========================================
# We intentionally do NOT ignore *.png/*.jpg so README/notebooks keep images.
# ==========================================
# Misc temp files
# ==========================================
*.tmp
*.bak
*.old
*.swp
*.swo
* copy*
/src-tauri/resources/sidecar
/src-tauri/resources/python
/src-tauri/resources/wheelhouse
/third_party/python
/third_party/wheelhouse
# User session data
settings/session/
*.json
# Whitelist Tauri/app config JSON files that must be tracked
!src-tauri/tauri.conf.json
!src-tauri/catalog/**/*.json
!catalog/catalog.json
!catalog/games/**/*.json
!package.json
!package-lock.json
!tsconfig.json