knitr::opts_knit$set(root.dir = rprojroot::find_rstudio_root_file()) # Set WD to Root here::i_am("dev/build.Rmd") library(here)
usethis::use_git()
usethis::use_git_ignore("private") usethis::use_git_ignore("*.nb.html")
usethis::use_description( fields = list( Title = "My Curriculum Vitae", `Authors@R` = 'person("Kittipos", "Sirivongrungson", email = "ki11ip0.s.a.s@gmail.com", role = c("aut", "cre"))', Description = "This repository build Curriculum Vitae using R-Markdown template from vitae package.", License = "MIT + file LICENSE" ) )
usethis::use_mit_license()
usethis::use_readme_rmd() usethis::use_lifecycle_badge("experimental")
# usethis::use_rmarkdown_template( # template_name = "name", # template_description = "description" # )
## Basic Package usethis::use_pipe() usethis::use_package("here") usethis::use_package("readr") usethis::use_package("dplyr") usethis::use_package("glue") usethis::use_package("tibble") ## API Package usethis::use_package("googledrive") usethis::use_package("googlesheets4") ## CV Package usethis::use_package("vitae") ## Personal Package usethis::use_dev_package("lbr", remote = "Lightbridge-KS")
# usethis::use_import_from("rlang", ":=") # Must have if use rlang
# Put this in R/globals.R # utils::globalVariables(c("var1")) # usethis::use_r("globals.R")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.