create_maestro {maestro} | R Documentation |
Creates a new maestro project
Description
Creates a new maestro project
Usage
create_maestro(path, type = "R", overwrite = FALSE, quiet = FALSE, ...)
Arguments
path |
file path for the orchestrator script |
type |
file type for the orchestrator (supports R, Quarto, and RMarkdown) |
overwrite |
whether to overwrite an existing orchestrator or maestro project |
quiet |
whether to silence messages in the console (default = |
... |
unused |
Value
invisible
Examples
# Creates a new maestro project with an R orchestrator
if (interactive()) {
new_proj_dir <- tempdir()
create_maestro(new_proj_dir, type = "R", overwrite = TRUE)
create_maestro(new_proj_dir, type = "Quarto", overwrite = TRUE)
}
[Package maestro version 0.5.0 Index]