[PR #63] [MERGED] Migration tools #124

Closed
opened 2026-02-15 16:30:22 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/vector-admin/pull/63
Author: @timothycarambat
Created: 10/3/2023
Status: Merged
Merged: 10/3/2023
Merged by: @timothycarambat

Base: masterHead: migration-tools


📝 Commits (6)

  • 58252ba WIP migration tooling
  • 5971cc3 wip migration tools
  • c28abf1 Merge branch 'master' of github.com:Mintplex-Labs/vector-admin into migration-tools
  • 82cd93d Migration UI and job queue
  • 4f0ba7a enable DB migrations
  • aca52ea add protection for job dedup

📊 Changes

16 files changed (+1184 additions, -10 deletions)

View changed files

📝 backend/endpoints/v1/index.js (+2 -0)
📝 backend/endpoints/v1/organizations/index.js (+1 -0)
backend/endpoints/v1/tools/index.js (+95 -0)
📝 backend/models/workspaceDocument.js (+20 -0)
backend/utils/jobs/organizationMigrationJob/index.js (+29 -0)
📝 backend/utils/vectordatabases/providers/chroma/index.js (+7 -0)
📝 frontend/src/App.tsx (+19 -9)
📝 frontend/src/components/Sidebar/index.tsx (+16 -0)
frontend/src/models/tools.ts (+24 -0)
📝 frontend/src/pages/Jobs/JobsList/index.tsx (+1 -1)
frontend/src/pages/Tools/MigrateConnection/index.tsx (+350 -0)
frontend/src/pages/Tools/ToolsList/index.tsx (+217 -0)
frontend/src/pages/Tools/index.tsx (+61 -0)
📝 frontend/src/utils/paths.ts (+8 -0)
workers/functions/migrateOrganization/index.js (+332 -0)
📝 workers/index.js (+2 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/vector-admin/pull/63 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 10/3/2023 **Status:** ✅ Merged **Merged:** 10/3/2023 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `migration-tools` --- ### 📝 Commits (6) - [`58252ba`](https://github.com/Mintplex-Labs/vector-admin/commit/58252ba0a61e0ea729072b9fbd2f2af4a001416b) WIP migration tooling - [`5971cc3`](https://github.com/Mintplex-Labs/vector-admin/commit/5971cc3a4c61c11c27d36ab2df0ea6e8b5da79cc) wip migration tools - [`c28abf1`](https://github.com/Mintplex-Labs/vector-admin/commit/c28abf1a29c4000ffb1759a879f379219c3001e6) Merge branch 'master' of github.com:Mintplex-Labs/vector-admin into migration-tools - [`82cd93d`](https://github.com/Mintplex-Labs/vector-admin/commit/82cd93dbdfaad565e449af98b2d106df9c9fdb78) Migration UI and job queue - [`4f0ba7a`](https://github.com/Mintplex-Labs/vector-admin/commit/4f0ba7a824e70d500e7e4c284266411cc39d46e0) enable DB migrations - [`aca52ea`](https://github.com/Mintplex-Labs/vector-admin/commit/aca52ea1c7ea898f123c61eaacca187502262194) add protection for job dedup ### 📊 Changes **16 files changed** (+1184 additions, -10 deletions) <details> <summary>View changed files</summary> 📝 `backend/endpoints/v1/index.js` (+2 -0) 📝 `backend/endpoints/v1/organizations/index.js` (+1 -0) ➕ `backend/endpoints/v1/tools/index.js` (+95 -0) 📝 `backend/models/workspaceDocument.js` (+20 -0) ➕ `backend/utils/jobs/organizationMigrationJob/index.js` (+29 -0) 📝 `backend/utils/vectordatabases/providers/chroma/index.js` (+7 -0) 📝 `frontend/src/App.tsx` (+19 -9) 📝 `frontend/src/components/Sidebar/index.tsx` (+16 -0) ➕ `frontend/src/models/tools.ts` (+24 -0) 📝 `frontend/src/pages/Jobs/JobsList/index.tsx` (+1 -1) ➕ `frontend/src/pages/Tools/MigrateConnection/index.tsx` (+350 -0) ➕ `frontend/src/pages/Tools/ToolsList/index.tsx` (+217 -0) ➕ `frontend/src/pages/Tools/index.tsx` (+61 -0) 📝 `frontend/src/utils/paths.ts` (+8 -0) ➕ `workers/functions/migrateOrganization/index.js` (+332 -0) 📝 `workers/index.js` (+2 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 16:30:22 -05:00
yindo closed this issue 2026-02-15 16:30:22 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/vector-admin#124