feat(backup): add MinIO snapshot backups via CLI and scheduler

This commit is contained in:
William Valentin
2026-02-16 13:16:29 -08:00
parent 8bed99c770
commit 01ee6ba53f
13 changed files with 416 additions and 1 deletions
+2
View File
@@ -27,6 +27,7 @@ import { registerOpenaiKeyCommand } from './openai-key.js';
import { registerZaiAuthCommand } from './zai-auth.js';
import { registerAnthropicAuthCommand } from './anthropic-auth.js';
import { registerSkillsCommand } from './skills.js';
import { registerBackupCommand } from './backup.js';
export function createProgram(): Command {
const program = new Command();
@@ -54,6 +55,7 @@ export function createProgram(): Command {
registerZaiAuthCommand(program);
registerAnthropicAuthCommand(program);
registerSkillsCommand(program);
registerBackupCommand(program);
return program;
}