dev/dev.R

#### Setup ####
golem::fill_desc(
  pkg_name = "googleforms", # The Name of the package containing the App
  pkg_title = "Easily create a shiny app that mimics the look of a google form", # The Title of the package containing the App
  pkg_description = "Create a one function shiny app that looks like a google form. Additional options include persistent data storage on google drive with {googledrive} and {googlesheets4}, allowing users to return to edit/change/update responses, and even email the unique return IDs with {gmailr}.", # The Description of the package containing the App
  author_first_name = "Brent", # Your First Name
  author_last_name = "Scott", # Your Last Name
  author_email = "brentscott93@gmail.com", # Your Email
  repo_url = NULL # The URL of the GitHub Repo (optional)
)
#common files
usethis::use_mit_license( name = "Brent Scott" )  # You can set another license here
usethis::use_readme_rmd( open = T )
usethis::use_code_of_conduct()
usethis::use_lifecycle_badge( "Experimental" )
usethis::use_news_md( open = FALSE )

usethis::use_package( "shiny" )
usethis::use_package( "shinydashboard" )
usethis::use_package( "shinyjs" )
usethis::use_package( "here" )
usethis::use_package( "googledrive" )
usethis::use_package( "googlesheets4" )
usethis::use_package( "gmailr" )
usethis::use_package( "fresh" )
usethis::use_package( "scales" )
usethis::use_package( "golem" )


devtools::check()
brentscott93/googleforms documentation built on Sept. 2, 2020, 12:37 p.m.