@vibedhost/cli 1.0.6 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +7 -1
- package/package.json +1 -1
- package/src/index.ts +7 -1
package/dist/index.js
CHANGED
|
@@ -1089,6 +1089,9 @@ async function handleApp() {
|
|
|
1089
1089
|
console.log(" [8] Umami (Privacy Analytics + Postgres)");
|
|
1090
1090
|
console.log(" [9] MeiliSearch (High-Speed Full-Text Search)");
|
|
1091
1091
|
console.log(" [10] Qdrant (Vector AI Database)");
|
|
1092
|
+
console.log(" [11] ChromaDB (AI Vector Embeddings)");
|
|
1093
|
+
console.log(" [12] Adminer (Database Web Manager GUI)");
|
|
1094
|
+
console.log(" [13] pgweb (PostgreSQL Web GUI)");
|
|
1092
1095
|
const chosen = await (0, utils_1.askQuestion)("Enter number", "1");
|
|
1093
1096
|
const map = {
|
|
1094
1097
|
"1": "wordpress",
|
|
@@ -1100,7 +1103,10 @@ async function handleApp() {
|
|
|
1100
1103
|
"7": "uptime-kuma",
|
|
1101
1104
|
"8": "umami",
|
|
1102
1105
|
"9": "meilisearch",
|
|
1103
|
-
"10": "qdrant"
|
|
1106
|
+
"10": "qdrant",
|
|
1107
|
+
"11": "chromadb",
|
|
1108
|
+
"12": "adminer",
|
|
1109
|
+
"13": "pgweb"
|
|
1104
1110
|
};
|
|
1105
1111
|
explicitCatalog = map[chosen] || "wordpress";
|
|
1106
1112
|
}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1220,6 +1220,9 @@ async function handleApp() {
|
|
|
1220
1220
|
console.log(" [8] Umami (Privacy Analytics + Postgres)");
|
|
1221
1221
|
console.log(" [9] MeiliSearch (High-Speed Full-Text Search)");
|
|
1222
1222
|
console.log(" [10] Qdrant (Vector AI Database)");
|
|
1223
|
+
console.log(" [11] ChromaDB (AI Vector Embeddings)");
|
|
1224
|
+
console.log(" [12] Adminer (Database Web Manager GUI)");
|
|
1225
|
+
console.log(" [13] pgweb (PostgreSQL Web GUI)");
|
|
1223
1226
|
const chosen = await askQuestion("Enter number", "1");
|
|
1224
1227
|
const map: Record<string, string> = {
|
|
1225
1228
|
"1": "wordpress",
|
|
@@ -1231,7 +1234,10 @@ async function handleApp() {
|
|
|
1231
1234
|
"7": "uptime-kuma",
|
|
1232
1235
|
"8": "umami",
|
|
1233
1236
|
"9": "meilisearch",
|
|
1234
|
-
"10": "qdrant"
|
|
1237
|
+
"10": "qdrant",
|
|
1238
|
+
"11": "chromadb",
|
|
1239
|
+
"12": "adminer",
|
|
1240
|
+
"13": "pgweb"
|
|
1235
1241
|
};
|
|
1236
1242
|
explicitCatalog = map[chosen] || "wordpress";
|
|
1237
1243
|
}
|