-
Notifications
You must be signed in to change notification settings - Fork 191
Feat/typeorm #1430
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Feat/typeorm #1430
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…render-issue fix(frontend): resolve navigation extra render
feat(frontend): implement generic DataGrid component
…025-11-05 fix(api): remove unnecessary code
…ation-entity fix(frontend): resolve settings normalization entity
fix(frontend): resolve Nlp Sample update
…ry-code-2025-11-06 fix(frontend): remove unnecessary code
fix(api): update eslint padding-line-between-statements rule
fix(frontend): resolve inbox subscriber selection
…ilters-2025-11-07 fix: update logic + TS to support nested filters
fix(widget): update widget apiUrl
fix(api): hide user hashed password
fix(frontend): enhance app routing + layout logic
fix(frontend): resolve Nlp value creation
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Motivation
This PR replaces Mongoose/MongoDB with TypeORM across the API. Why? To make local development frictionless, enforce relational integrity, and unlock native Postgres features such as pgvector for RAG-style embedding search.
Key advantages
✅ Run locally with SQLite — no Docker required for dev
✅ Postgres + pgvector ready for production semantic search
✅ Real foreign keys & constraints (fewer orphaned records)
✅ First-class transactions and migrations
✅ DB-agnostic (SQLite for dev/tests; Postgres/MySQL for staging/prod
Useful commands :
Installation :
Build frontend project :
cd packages/frontend VITE_APP_MODE=monolith npm run buildRun the project in monolith mode :
NODE_OPTIONS='--require dotenv/config' pnpm run devTodo
Type of change:
Please delete options that are not relevant.
Checklist: