Skip to content

Commit 467acb5

Browse files
authored
Update .gitignore
1 parent 553a553 commit 467acb5

File tree

1 file changed

+252
-1
lines changed

1 file changed

+252
-1
lines changed

.gitignore

Lines changed: 252 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,252 @@
1-
target/\n*.pyc\n.venv/\nnode_modules/
1+
# 🧠 Neural Nexus - Git Ignore Configuration
2+
3+
# 🦀 Rust artifacts
4+
target/
5+
Cargo.lock
6+
**/*.rs.bk
7+
*.pdb
8+
9+
# 🐍 Python artifacts
10+
__pycache__/
11+
*.py[cod]
12+
*$py.class
13+
*.so
14+
.Python
15+
build/
16+
develop-eggs/
17+
dist/
18+
downloads/
19+
eggs/
20+
.eggs/
21+
lib/
22+
lib64/
23+
parts/
24+
sdist/
25+
var/
26+
wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
MANIFEST
31+
32+
# 🔧 Virtual environments
33+
venv/
34+
env/
35+
ENV/
36+
env.bak/
37+
venv.bak/
38+
.venv/
39+
.env
40+
.env.local
41+
.env.*.local
42+
43+
# 🧪 Testing & Coverage
44+
.coverage
45+
.pytest_cache/
46+
htmlcov/
47+
.tox/
48+
.nox/
49+
coverage.xml
50+
*.cover
51+
.hypothesis/
52+
.pytest_cache/
53+
nosetests.xml
54+
coverage.xml
55+
*.cover
56+
*.py,cover
57+
.coverage
58+
.coverage.*
59+
.cache
60+
61+
# 📊 Jupyter Notebook
62+
.ipynb_checkpoints
63+
notebooks/.ipynb_checkpoints/
64+
*.ipynb
65+
66+
# 🎯 Machine Learning Models
67+
*.h5
68+
*.hdf5
69+
*.pb
70+
*.onnx
71+
*.trt
72+
*.engine
73+
*.plan
74+
models/checkpoints/
75+
models/trained/
76+
models/cache/
77+
data/raw/
78+
data/processed/
79+
data/cache/
80+
81+
# 🏗️ Build artifacts
82+
cmake-build-*/
83+
build/
84+
dist/
85+
target/
86+
out/
87+
88+
# 🐳 Docker
89+
.dockerignore
90+
docker-compose.override.yml
91+
*.dockerfile.bak
92+
93+
# 🔄 CI/CD
94+
.github/workflows/*.log
95+
.circleci/
96+
.travis.yml
97+
.gitlab-ci.yml
98+
99+
# 🖥️ IDE & Editor
100+
.vscode/
101+
.idea/
102+
*.swp
103+
*.swo
104+
*~
105+
.DS_Store
106+
.vscode/settings.json
107+
.vscode/launch.json
108+
.vscode/extensions.json
109+
110+
# 📱 System files
111+
.DS_Store
112+
.DS_Store?
113+
._*
114+
.Spotlight-V100
115+
.Trashes
116+
ehthumbs.db
117+
Thumbs.db
118+
119+
# 🔐 Security & Secrets
120+
*.key
121+
*.pem
122+
*.crt
123+
*.p12
124+
secrets/
125+
.env
126+
.env.local
127+
.env.*.local
128+
config/secrets.yaml
129+
config/keys/
130+
131+
# 📈 Logs & Monitoring
132+
logs/
133+
*.log
134+
npm-debug.log*
135+
yarn-debug.log*
136+
yarn-error.log*
137+
lerna-debug.log*
138+
.pnpm-debug.log*
139+
140+
# 🌐 Networking
141+
*.pcap
142+
*.cap
143+
144+
# 🧮 Numerical computing
145+
*.npy
146+
*.npz
147+
*.pkl
148+
*.pickle
149+
150+
# 📊 Database
151+
*.db
152+
*.sqlite
153+
*.sqlite3
154+
data/*.db
155+
data/*.sqlite
156+
157+
# 🚀 Deployment
158+
k8s/secrets/
159+
k8s/config/
160+
helm/values.local.yaml
161+
terraform/.terraform/
162+
terraform/terraform.tfstate
163+
terraform/terraform.tfstate.backup
164+
terraform/*.tfvars
165+
166+
# 🔧 Hardware specific
167+
# Raspberry Pi
168+
*.img
169+
*.bin
170+
firmware/
171+
172+
# NVIDIA Jetson
173+
*.tensorrt
174+
*.engine
175+
*.plan
176+
jetpack/
177+
178+
# 🧪 Benchmarks & Performance
179+
benchmarks/results/
180+
performance/
181+
*.bench
182+
*.prof
183+
184+
# 📦 Package managers
185+
node_modules/
186+
npm-debug.log
187+
yarn-error.log
188+
package-lock.json
189+
yarn.lock
190+
191+
# 🎨 Media files (unless specifically needed)
192+
*.mp4
193+
*.avi
194+
*.mov
195+
*.mp3
196+
*.wav
197+
*.png
198+
*.jpg
199+
*.jpeg
200+
*.gif
201+
*.svg
202+
# Exception: Allow docs images
203+
!docs/images/*
204+
!docs/assets/*
205+
206+
# 🌍 Temporary files
207+
tmp/
208+
temp/
209+
*.tmp
210+
*.temp
211+
*~
212+
213+
# 🧠 Neural network specific
214+
wandb/
215+
tensorboard/
216+
checkpoints/
217+
experiments/
218+
219+
# 🔄 Backup files
220+
*.bak
221+
*.backup
222+
*.old
223+
224+
# 🧪 Test artifacts
225+
test-results/
226+
coverage/
227+
.nyc_output/
228+
229+
# 📚 Documentation build
230+
docs/_build/
231+
docs/site/
232+
site/
233+
234+
# 🔧 Configuration overrides
235+
config/local.yaml
236+
config/development.yaml
237+
config/production.yaml
238+
!config/example.yaml
239+
240+
# 🏭 Generated files
241+
generated/
242+
auto-generated/
243+
*_generated.py
244+
*_generated.rs
245+
*_pb2.py
246+
*_pb2_grpc.py
247+
248+
# 🎯 Edge computing specific
249+
edge_data/
250+
sensor_data/
251+
inference_cache/
252+
model_cache/

0 commit comments

Comments
 (0)