- Add services/anythingllm-devtools HTTP API (repos + AnythingLLM + RAG) - Rename gitea-issues to git-issues across smart_ide agents and docs - Add projects/builazoo, builazoo README, cron fragment, ssh-config.example - Add ensure-ia-dev-project-link.sh; wrapper delegates smart_ide id - Bump ia_dev submodule (git-issues rename, project symlinks) - Align 4nkaiignore templates; update API index and project docs
55 lines
768 B
Plaintext
55 lines
768 B
Plaintext
# .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
|