remotes::install_github("ropensci/tic") remotes::install_github("ropensci/travis") install.packages("rmarkdown")
travis::browse_travis_token()
usethis::edit_r_environ()
tic::use_tic() tic::deploy()
# R package 빌드해서, Error/Warning/Note 리포트 해줌 devtools::check_win_devel()
# docs 만들어줌줌 pkgdown::build_site()
# NAMESPACE 만들어줌줌 devtools::document()
# travis 에서만 사용해야 됨 pkgdown::deploy_site_github()
devtools::build(pkg = '../') Sys.getenv("R_LIBS")
devtools::build(pkg = '../') Sys.getenv("PKG_TARBALL")
pkgdown::build_site(pkg = '../') # git repo가 있는 디렉토리에서 # repo 에서만 사용할 git config 가 필요함 # # git config user.email "skysign@gmail.com" # git config user.name "ByeongKeon Kim" pkgdown::deploy_to_branch(pkg = '../')
usethis::use_appveyor()
install.packages('pdflatex', force = TRUE)
travis::use_travis_deploy()
# 꼭 top 에서, 즉, DESCRIPTION이 있는 곳에서 실행 해야 함 usethis::use_vignette("my-vignette")
# R library 패스 Sys.getenv("R_LIBS") .libPaths()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.