brainy/.gitignore
David Snelling 52a43d51d4 refactor: simplify build system and improve model loading flexibility
- Remove Rollup bundling in favor of direct TypeScript compilation
- Move from bundled models to dynamic model loading with configurable paths
- Add Docker deployment examples and documentation
- Implement robust model loader with fallback mechanisms
- Update storage adapters for better cross-environment compatibility
- Add comprehensive tests for model loading and package installation
- Simplify package.json scripts and remove complex build configurations
- Clean up deprecated demo files and old bundling scripts

BREAKING CHANGE: Models are no longer bundled with the package. They are now loaded dynamically from CDN or custom paths.
2025-08-05 16:09:30 -07:00

78 lines
1.1 KiB
Text

# Build output
/tmp
/out-tsc
/dist
/cloud-wrapper/dist
# Dependencies
/node_modules
/cloud-wrapper/node_modules
npm-debug.log*
yarn-debug.log*
yarn-error.log*
/.pnp
.pnp.js
# Package artifacts
*.tgz
*.tar.gz
# Coverage directory
/coverage
# Environment files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# IDE files
.vscode/
.idea/
*.iml
*.iws
*.ipr
*.sublime-workspace
*.sublime-project
# OS files
.DS_Store
Thumbs.db
# Data directories created by FileSystemStorage
/brainy-data
/custom-data
/clean-history.sh
/bluesky-augmentation/node_modules/
/bluesky-augmentation/dist/
# Test files
/test-worker.js
/test-node24-worker.js
/test-results.json
/tests/results/
/tests/results/*.json
# Generated files
/encoded-image.html
/encoded-image.txt
/npm
/rollup
/soulcraft-brainy-*.tgz
/data/
# Temporary test files created by AI agents
test*.js
test*.ts
temp-test*.js
temp-test*.ts
reproduction*.js
reproduction*.ts
debug*.js
debug*.ts
/temp/
/temp-tests/
/brainy-models-package/node_modules/
/test-consumer/node_modules/
/test-install/node_modules/