mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
Add workspace load-shedding ignores
This commit is contained in:
parent
c7989636b7
commit
74f00736ab
2 changed files with 60 additions and 0 deletions
42
.codeiumignore
Normal file
42
.codeiumignore
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
# Research Stack is intentionally large; keep Windsurf/Codeium indexing on
|
||||
# source and docs, not generated corpora, chain snapshots, build products, or
|
||||
# archived dependency trees.
|
||||
|
||||
.git/
|
||||
.changes/
|
||||
.cache/
|
||||
.lake/
|
||||
**/.lake/
|
||||
**/target/
|
||||
**/node_modules/
|
||||
**/__pycache__/
|
||||
**/.venv/
|
||||
|
||||
shared-data/
|
||||
data/
|
||||
artifacts/
|
||||
out/
|
||||
logs/
|
||||
scratch/
|
||||
extensions/
|
||||
ai-math-discovery-systems/
|
||||
|
||||
5-Applications/out/
|
||||
5-Applications/scripts/models/
|
||||
3-Mathematical-Models/equations_*/
|
||||
3-Mathematical-Models/equations_parquet_tagged/
|
||||
4-Infrastructure/ComfyUI/
|
||||
|
||||
*.jsonl
|
||||
*.parquet
|
||||
*.vcd
|
||||
*.gguf
|
||||
*.zip
|
||||
*.tar
|
||||
*.tar.gz
|
||||
*.zst
|
||||
*.mp4
|
||||
*.gif
|
||||
|
||||
API KEYS/
|
||||
Security & Passwords/
|
||||
18
.vscode/settings.json
vendored
18
.vscode/settings.json
vendored
|
|
@ -9,9 +9,18 @@
|
|||
"**/.ruff_cache/**": true,
|
||||
"**/.venv/**": true,
|
||||
"**/__pycache__/**": true,
|
||||
"**/.lake/**": true,
|
||||
"**/target/**": true,
|
||||
"**/node_modules/**": true,
|
||||
"**/*.jsonl": true,
|
||||
"**/*.parquet": true,
|
||||
"**/*.vcd": true,
|
||||
".changes/**": true,
|
||||
"4-Infrastructure/ComfyUI/**": true,
|
||||
"3-Mathematical-Models/equations_*/**": true,
|
||||
"3-Mathematical-Models/equations_parquet_tagged/**": true,
|
||||
"5-Applications/out/**": true,
|
||||
"5-Applications/scripts/models/**": true,
|
||||
"API KEYS/**": true,
|
||||
"Security & Passwords/**": true,
|
||||
"ai-math-discovery-systems/**": true,
|
||||
|
|
@ -29,9 +38,18 @@
|
|||
"**/.ruff_cache": true,
|
||||
"**/.venv": true,
|
||||
"**/__pycache__": true,
|
||||
"**/.lake": true,
|
||||
"**/target": true,
|
||||
"**/node_modules": true,
|
||||
"**/*.jsonl": true,
|
||||
"**/*.parquet": true,
|
||||
"**/*.vcd": true,
|
||||
".changes": true,
|
||||
"4-Infrastructure/ComfyUI": true,
|
||||
"3-Mathematical-Models/equations_*": true,
|
||||
"3-Mathematical-Models/equations_parquet_tagged": true,
|
||||
"5-Applications/out": true,
|
||||
"5-Applications/scripts/models": true,
|
||||
"API KEYS": true,
|
||||
"Security & Passwords": true,
|
||||
"ai-math-discovery-systems": true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue