add set server admin password to cli

This commit is contained in:
miloschwartz
2025-06-15 13:19:07 -04:00
parent ddd292422b
commit fc19d0ba8b
9 changed files with 172 additions and 5 deletions

11
cli/index.ts Normal file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env node
import yargs from "yargs";
import { hideBin } from "yargs/helpers";
import { setAdminCredentials } from "@cli/commands/setAdminCredentials";
yargs(hideBin(process.argv))
.scriptName("pangctl")
.command(setAdminCredentials)
.demandCommand()
.help().argv;