# Ignore development files # Ignore all node_modules to prevent Docker overlay conflicts node_modules **/node_modules .next .git .github *.log npm-debug.log* yarn-debug.log* yarn-error.log* # Environment files .env.local .env.development.local .env.test.local .env.production.local # Testing coverage .nyc_output **/__tests__ **/*.test.ts **/*.test.tsx **/*.spec.ts **/*.spec.tsx # IDE .vscode .idea *.swp *.swo .claude # OS .DS_Store Thumbs.db # Documentation README.md docs/ *.md # Python cache __pycache__ *.pyc *.pyo *.pyd .Python packages/core/venv/ packages/core/.venv/ # Storybook storybook-static **/*.stories.tsx **/*.stories.ts .storybook # Deployment files nas-deployment/ DEPLOYMENT_PLAN.md # SQLite database files (created at runtime) **/data/*.db **/data/*.db-shm **/data/*.db-wal # Build artifacts (rebuilt during Docker build) **/dist **/.next **/build **/styled-system