| manifest_create | R Documentation |
This creates a minimal TOML file with a [manifesto], [project],
[environment], and empty [dependencies] section.
manifest_create(
path,
project_name = "Project",
project_version = "0.0.1",
manifesto_version = manifest_version(),
r_version = "*",
...
)
path |
File path to write to. If missing, a temporary file will be used. |
project_name |
Optional project name. Defaults to |
project_version |
Optional project version. Defaults to |
manifesto_version |
Optional |
r_version |
Optional R version settings. Defaults to |
... |
Additional named arguments to add to the manifest. These will be added to the top-level of the TOML file. |
Invisibly returns the written path.
path <- manifest_create(
dependencies = list(dplyr = '>= 1.0.0'),
'suggests-dependencies' = list(testthat = '>= 3.0.0')
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.