create_r_project()
: Create a R project with full
content skeleton#' \dontrun{
# path to your local project
project_path <- tempfile("my.local.project")
### R package skeleton
create_r_project(
project_path = project_path,
type = c("package"),
name_licence = "Bob",
type_licence = usethis::use_proprietary_license
)
### Shiny app
create_r_project(
project_path = project_path,
type = c("golem"),
name_licence = "Bob",
type_licence = usethis::use_proprietary_license
)
### Bookdown
create_r_project(
project_path = project_path,
type = c("book"),
name_licence = "Bob",
type_licence = usethis::use_proprietary_license
)
#' }
create_book_project()
add_kit_project()
: Add necessary files for any R
projectadd_kit_package()
: Add files necessary for a package,
including {golem}add_build_ignore()
add_git_ignore()
use_dev_history()
creates dev_history.Rmd
files:
This function will put the file into your “dev” folder.
create_r_project()
:
Create a R project with full content skeletoncreate_book_project()
add_kit_project()
:
Add necessary files for any R projectadd_kit_package()
:
Add files necessary for a package, including {golem}add_build_ignore()
add_git_ignore()