- Import dotenv in worker to load .env configuration - Specify explicit path to server/.env file - Update Meilisearch config to use changeme123 as default key - Add debug logging to Meilisearch client initialization - Add meilisearch-data/ to .gitignore OCR pipeline is fully functional with 85% confidence: - PDF upload ✅ - Queue processing ✅ - PDF to image conversion ✅ - Tesseract OCR ✅ - Database storage ✅ Remaining issue: Meilisearch authentication needs to be resolved to enable search indexing. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
49 lines
426 B
Text
49 lines
426 B
Text
# Dependencies
|
|
node_modules/
|
|
package-lock.json
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Database
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# Uploads
|
|
uploads/
|
|
temp/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
*.tsbuildinfo
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output/
|
|
playwright-report/
|
|
test-results/
|
|
|
|
# Meilisearch
|
|
data.ms/
|
|
meilisearch-data/
|