vvprojector_write_package_config_yml.Rd
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())
A character string specifying the path where the config.yml
file should be written. Defaults to the current working directory.
NULL. The function writes the config.yml
file to the specified location.
# 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")
}