wip docs dir

This commit is contained in:
2025-11-10 16:46:43 +01:00
parent 24e1ade129
commit 659bb5da63
4 changed files with 25 additions and 23 deletions

View File

@@ -26,10 +26,10 @@ impl App {
Self::setup_environment_variables();
match args.command {
CommandArg::Build { .. } => build(config.offline_reveal).await,
CommandArg::Build { .. } => build(&config).await,
CommandArg::Health => health(),
CommandArg::InstallReveal => install_reveal().await,
CommandArg::Serve { .. } => serve(config.port).await,
CommandArg::Serve { .. } => serve(&config).await,
CommandArg::Completions { shell } => completions(shell)
};
}