Skip to content

Fix 596 - add better comments to fill_desc #1021

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions inst/shinyexample/dev/01_start.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
## to change the name in the app_sys() function in app_config.R /!\
##
golem::fill_desc(
pkg_name = "shinyexample", # The Name of the package containing the App
pkg_title = "PKG_TITLE", # The Title of the package containing the App
pkg_description = "PKG_DESC.", # The Description of the package containing the App
pkg_name = "shinyexample", # The name of the golem package containing the app (typically lowercase, no underscore or periods)
pkg_title = "PKG_TITLE", # What the Package Does (One Line, Title Case, No Period)
pkg_description = "PKG_DESC.", # What the package does (one paragraph).
author_first_name = "AUTHOR_FIRST", # Your First Name
author_last_name = "AUTHOR_LAST", # Your Last Name
author_email = "[email protected]", # Your Email
repo_url = NULL, # The URL of the GitHub Repo (optional),
pkg_version = "0.0.0.9000" # The Version of the package containing the App
author_email = "[email protected]", # Your email
repo_url = NULL, # The URL of the GitHub repo (optional),
pkg_version = "0.0.0.9000" # The version of the package containing the app
)

## Set {golem} options ----
Expand Down