mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-17 12:56:05 +00:00
cli: updated config to get config from app, added sync command (#241)
* cli: updated config to get config from app, added sync command * updated command description
This commit is contained in:
@@ -1,15 +1,37 @@
|
|||||||
import { getDefaultConfig } from "modules/ModuleManager";
|
import { getDefaultConfig } from "modules/ModuleManager";
|
||||||
import type { CliCommand } from "../types";
|
import type { CliCommand } from "../types";
|
||||||
|
import { makeAppFromEnv } from "cli/commands/run";
|
||||||
|
import { writeFile } from "node:fs/promises";
|
||||||
|
import c from "picocolors";
|
||||||
|
|
||||||
export const config: CliCommand = (program) => {
|
export const config: CliCommand = (program) => {
|
||||||
program
|
program
|
||||||
.command("config")
|
.command("config")
|
||||||
.description("get default config")
|
.description("get app config")
|
||||||
.option("--pretty", "pretty print")
|
.option("--pretty", "pretty print")
|
||||||
.action((options) => {
|
.option("--default", "use default config")
|
||||||
const config = getDefaultConfig();
|
.option("--secrets", "include secrets in output")
|
||||||
|
.option("--config <config>", "config file")
|
||||||
|
.option("--db-url <db>", "database url, can be any valid sqlite url")
|
||||||
|
.option("--out <file>", "output file")
|
||||||
|
.action(async (options) => {
|
||||||
|
let config: any = {};
|
||||||
|
|
||||||
// biome-ignore lint/suspicious/noConsoleLog:
|
if (options.default) {
|
||||||
console.log(options.pretty ? JSON.stringify(config, null, 2) : JSON.stringify(config));
|
config = getDefaultConfig();
|
||||||
|
} else {
|
||||||
|
const app = await makeAppFromEnv(options);
|
||||||
|
config = app.toJSON(options.secrets);
|
||||||
|
}
|
||||||
|
|
||||||
|
config = options.pretty ? JSON.stringify(config, null, 2) : JSON.stringify(config);
|
||||||
|
|
||||||
|
console.info("");
|
||||||
|
if (options.out) {
|
||||||
|
await writeFile(options.out, config);
|
||||||
|
console.info(`Config written to ${c.cyan(options.out)}`);
|
||||||
|
} else {
|
||||||
|
console.info(JSON.parse(config));
|
||||||
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -7,3 +7,4 @@ export { create } from "./create";
|
|||||||
export { copyAssets } from "./copy-assets";
|
export { copyAssets } from "./copy-assets";
|
||||||
export { types } from "./types";
|
export { types } from "./types";
|
||||||
export { mcp } from "./mcp/mcp";
|
export { mcp } from "./mcp/mcp";
|
||||||
|
export { sync } from "./sync";
|
||||||
|
|||||||
47
app/src/cli/commands/sync.ts
Normal file
47
app/src/cli/commands/sync.ts
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
import type { CliCommand } from "../types";
|
||||||
|
import { makeAppFromEnv } from "cli/commands/run";
|
||||||
|
import { writeFile } from "node:fs/promises";
|
||||||
|
import c from "picocolors";
|
||||||
|
|
||||||
|
export const sync: CliCommand = (program) => {
|
||||||
|
program
|
||||||
|
.command("sync")
|
||||||
|
.description("sync database")
|
||||||
|
.option("--config <config>", "config file")
|
||||||
|
.option("--db-url <db>", "database url, can be any valid sqlite url")
|
||||||
|
.option("--dump", "dump operations to console instead of executing them")
|
||||||
|
.option("--drop", "include destructive DDL operations")
|
||||||
|
.option("--out <file>", "output file")
|
||||||
|
.option("--sql", "use sql output")
|
||||||
|
.action(async (options) => {
|
||||||
|
const app = await makeAppFromEnv(options);
|
||||||
|
const schema = app.em.schema();
|
||||||
|
const stmts = await schema.sync({ drop: options.drop });
|
||||||
|
|
||||||
|
console.info("");
|
||||||
|
if (stmts.length === 0) {
|
||||||
|
console.info(c.yellow("No changes to sync"));
|
||||||
|
process.exit(0);
|
||||||
|
}
|
||||||
|
// @todo: currently assuming parameters aren't used
|
||||||
|
const sql = stmts.map((d) => d.sql).join(";\n") + ";";
|
||||||
|
|
||||||
|
if (options.dump) {
|
||||||
|
if (options.out) {
|
||||||
|
const output = options.sql ? sql : JSON.stringify(stmts, null, 2);
|
||||||
|
await writeFile(options.out, output);
|
||||||
|
console.info(`SQL written to ${c.cyan(options.out)}`);
|
||||||
|
} else {
|
||||||
|
console.info(options.sql ? c.cyan(sql) : stmts);
|
||||||
|
}
|
||||||
|
|
||||||
|
process.exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
await schema.sync({ force: true, drop: options.drop });
|
||||||
|
console.info(c.cyan(sql));
|
||||||
|
|
||||||
|
console.info(`${c.gray(`Executed ${c.cyan(stmts.length)} statement(s)`)}`);
|
||||||
|
console.info(`${c.green("Database synced")}`);
|
||||||
|
});
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user