mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 08:50:56 +01:00
* feat(cli): add cli command to recreate credentials admin * fix: add missing username validation * fix: deepsource issue
13 lines
352 B
TypeScript
13 lines
352 B
TypeScript
import { run } from "@drizzle-team/brocli";
|
|
|
|
import { fixUsernames } from "./commands/fix-usernames";
|
|
import { recreateAdmin } from "./commands/recreate-admin";
|
|
import { resetPassword } from "./commands/reset-password";
|
|
|
|
const commands = [resetPassword, fixUsernames, recreateAdmin];
|
|
|
|
void run(commands, {
|
|
name: "homarr-cli",
|
|
version: "1.0.0",
|
|
});
|