Description Usage Arguments Functions Examples
View source: R/createPackageProject.R
Create a package the usethis way with a number of infrastructure commands executed to save you hassle
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | createPackageProject(
  name,
  title = NULL,
  folder = getwd(),
  initial_status = "wip",
  coverage = "codecov",
  git = TRUE,
  pkgdown = TRUE,
  external_setup = list(git_service = "GitHub", login = gh::gh_whoami()$login, private =
    FALSE, protocol = "ssh", ci_activation = "travis"),
  reset = TRUE,
  open = FALSE
)
create_package_project(
  name,
  title = NULL,
  folder = getwd(),
  initial_status = "wip",
  coverage = "codecov",
  git = TRUE,
  pkgdown = TRUE,
  external_setup = list(git_service = "GitHub", login = gh::gh_whoami()$login, private =
    FALSE, protocol = "ssh", ci_activation = "travis"),
  reset = TRUE,
  open = FALSE
)
 | 
| name | Project / package name | 
| title | "What the Project Does (One Line, Title Case)" If NULL, a random one will be generated. | 
| folder | Folder under which to create the project | 
| initial_status | initial repostatus.org status for the project, whose badge will be added to the README. | 
| coverage | What code coverage platform to use, NULL, "codecov" or "coveralls". | 
| git | Configure Git | 
| pkgdown | Add a pkgdown config file | 
| external_setup | How to do the partly interactive setup of online git, CI and coverage platforms. If NULL, no setup. 
 | 
| reset | Whether to reset the project to current project | 
| open | Whether to open the newly created project (in another RStudio session) | 
create_package_project: aesthetic addition for continuity purposes
| 1 2 3 4 5 6 7 8 9 10 11 12 13 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.