# .4nkaiignore — same rules as .gitignore (see gitignore(5)) # Used by anythingllm-devtools and repos-devtools-server (post-clone) to filter uploads # and by the legacy VS Code extension after /repos-load-sync. Copy or rename to `.4nkaiignore`. # VCS .git/ # Dependencies & build outputs node_modules/ **/node_modules/ dist/ out/ build/ .next/ .turbo/ coverage/ .nyc_output/ target/ # IDE / OS .idea/ .vscode/ .DS_Store Thumbs.db # Secrets & local env (never embed) .env .env.* !.env.example # Large or binary artifacts (remove a line if your project should embed that type) *.png *.jpg *.jpeg *.gif *.webp *.ico *.pdf *.zip *.tar *.gz *.7z *.wasm *.so *.dylib *.dll *.exe *.mp4 *.mp3 # Minified bundles (often redundant with sources) *.min.js *.min.css *.map