mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
✅ Core Stability Achievements: - Demo user login working (demo@omnivore.app / demo_password) - PDF upload, viewing, highlighting, and notes fully functional - Database persistence across container restarts - Redis connection issues resolved 🔧 Infrastructure Improvements: - Added PostgreSQL persistent volumes (postgres_data, postgres_replica_data) - Fixed Redis configuration with proper URLs and missing MQ_REDIS_URL - Enhanced demo user creation with corrected ON CONFLICT clause - Improved PDF content handler with better title extraction 🐛 Bug Fixes: - Fixed demo user authentication by correcting setup.sh ON CONFLICT - Resolved Redis connection errors in API and content-fetch services - Enhanced RSS handler Redis client with null-check safety - Added mail server data to gitignore 📚 Documentation: - Added development vs production guide - Added troubleshooting documentation - Added Cursor AI rules for consistent development 🎯 Next Phase Ready: Stable foundation established for implementing link upload/saving functionality.
14 lines
281 B
JSON
14 lines
281 B
JSON
{
|
|
"extends": "./../../tsconfig.json",
|
|
"ts-node": {
|
|
"files": true
|
|
},
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"paths": {
|
|
"express": ["./node_modules/@types/express"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "test/**/*.ts"],
|
|
"exclude": ["./src/generated"]
|
|
}
|