# Building a Prod-Ready, Robust Shiny Application.
#
# README: each step of the dev files is optional, and you don't have to
########################################
#### CURRENT FILE: ON START SCRIPT #####
########################################
golem::fill_desc(
pkg_name = "zipfJuxtaposer",
pkg_title = "zipfJuxtaposer",
pkg_description = "Package to compare two zipfian ranked lists of components.",
author_first_name = "Jonathan",
author_last_name = "St-Onge",
author_email = "jonathanstonge7@gmail.com",
repo_url = "https://github.com/jstonge/zipfJuxtaposer"
)
## Set {golem} options ----
golem::set_golem_options()
## Create Common Files ----
## See ?usethis for more information
usethis::use_mit_license( "Golem User" ) # You can set another license here
usethis::use_readme_rmd( open = FALSE )
usethis::use_code_of_conduct()
usethis::use_lifecycle_badge( "Experimental" )
usethis::use_news_md( open = FALSE )
## Use git ----
usethis::use_git()
## Init Testing Infrastructure ----
## Create a template for tests
golem::use_recommended_tests()
## Use Recommended Packages ----
golem::use_recommended_deps()
## Favicon ----
# If you want to change the favicon (default is golem's one)
# golem::use_favicon() # path = "path/to/ico". Can be an online file.
# golem::remove_favcicon()
## Add helper functions ----
golem::use_utils_ui()
golem::use_utils_server()
# You're now set! ----
# go to dev/02_dev.R
rstudioapi::navigateToFile( "dev/02_dev.R" )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.