This function retrieves the package's default config.yml file and writes it to a specified location. If no location is specified, it defaults to the current working directory.

vvprojector_write_package_config_yml(output_path = getwd())

Arguments

output_path

A character string specifying the path where the config.yml file should be written. Defaults to the current working directory.

Value

NULL. The function writes the config.yml file to the specified location.

Examples

# Write to the current working directory
if (FALSE) {
vvprojector_write_package_config_yml()
}

# Write to a specific location
if (FALSE) {
vvprojector_write_package_config_yml(output_path = "path/to/config/directory")
}