Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 94 additions & 0 deletions .gitignore.ultimate
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
# Dependencies
node_modules/
package-lock.json

# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pino-*.log

# Runtime data
pids/
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs
lib-cov/

# Coverage directory
coverage/
.nyc_output/

# Compiled binary addons
build/Release

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Environment variables
.env
.env.local
.env.*.local

# FAISS data
data/faiss-index/*.faiss
data/faiss-index/vectors/

# Learned data
data/learned/cases/*.json
data/learned/metrics/*.json

# Knowledge base (too large for git)
data/knowledge/**/*.json
data/knowledge/**/*.md
!data/knowledge/.gitkeep

# Neo4j data
data/graph-db/

# Temporary files
tmp/
temp/
*.tmp

# OS files
.DS_Store
Thumbs.db

# IDE files
.vscode/
.idea/
*.swp
*.swo
*~

# Docker
.dockerignore

# Test results
test-results/
playwright-report/

# Build outputs
dist/
build/

# Backup files
*.bak
*.backup

# Keep directory structure
!data/faiss-index/.gitkeep
!data/knowledge/.gitkeep
!data/learned/cases/.gitkeep
!data/learned/metrics/.gitkeep
67 changes: 67 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Development and testing files
test/
scripts/
.github/
docker/
data/
config/

# Documentation that's not needed in package
COMPARISON.md
FIXES.md
IMPLEMENTATION_STATUS.md
OPTIMIZATIONS.md
SCORE_10_10.md
FINAL_SCORE_10_10.md
VERIFICATION.md
NEXT_STEPS.md
ULTIMATE_ARCHITECTURE.md
README_ULTIMATE.md
QUICKSTART_ULTIMATE.md
Dockerfile.ultimate
.gitignore.ultimate

# Git files
.git
.gitignore
.gitattributes

# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# Build and dependency directories
node_modules/
coverage/
.nyc_output/
dist/
build/

# Environment and local config
.env
.env.local
.env.*.local
*.local

# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Debug files
debug-*.js
*.debug.js

# Temporary files
tmp/
temp/
*.tmp
*.bak
*.cache
Loading