84 lines
1.2 KiB
Plaintext
84 lines
1.2 KiB
Plaintext
# 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
|
|
# EXCEPTION: Include smoke tests for the smoke tests image
|
|
!apps/web/e2e/smoke/*.spec.ts
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
.claude
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Documentation
|
|
README.md
|
|
docs/
|
|
*.md
|
|
# EXCEPTION: Include blog content markdown files
|
|
!apps/web/content/**/*.md
|
|
|
|
# Python cache
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
packages/core/venv/
|
|
packages/core/.venv/
|
|
|
|
# Vision training data (large files, training happens locally)
|
|
**/data/vision-training/
|
|
apps/web/data/vision-training/
|
|
|
|
# Additional Python virtual environments
|
|
**/.venv*
|
|
apps/web/.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 |