Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app/client/packages/rts/src/ctl/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import * as restore from "./restore";
import * as check_replica_set from "./check_replica_set";
import * as version from "./version";
import * as mongo_shell_utils from "./mongo_shell_utils";
import moveToPostgres from "./move-to-postgres";
import { config } from "dotenv";

const APPLICATION_CONFIG_PATH = "/appsmith-stacks/configuration/docker.env";
Expand Down Expand Up @@ -60,6 +61,8 @@ if (["export-db", "export_db", "ex"].includes(command)) {
version.exec();
} else if (["mongo-eval", "mongo_eval", "mongoEval"].includes(command)) {
mongo_shell_utils.exec();
} else if (command === "move-to-postgres") {
moveToPostgres();
} else {
showHelp();
}
231 changes: 0 additions & 231 deletions app/client/packages/rts/src/ctl/move-to-postgres.mjs

This file was deleted.

Loading