Skip to content

Commit

Permalink
update description
Browse files Browse the repository at this point in the history
move config from imports to suggests
  • Loading branch information
cristinamullin committed Feb 20, 2024
1 parent 2ed5af6 commit 6e35c34
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 25 deletions.
19 changes: 10 additions & 9 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ Authors@R:
role = "aut"),
person(given = "Elise",
family = "Hinman",
role = c("aut"),
email = "[email protected]"),
role = "aut"),
person(given = "Hillary",
family = "Marler",
role = "aut"),
person(given = "Shelly",
family = "Thawley",
role = "aut"),
person(given = "Hui",
family = "Zhou",
role = c("aut"),
email = "[email protected]"),
person(given = "Shelly",
family = "Thawley",
role = "aut"))
Description: Assists data partners in retrieving, wrangling, quality checking, and preparing data from the Water Quality Portal for subsequent analyses.
Description: Assists data partners in retrieving, wrangling, quality checking, and harmonizing data from the Water Quality Portal for subsequent analyses.
License: CC0
Copyright: This software is in the public domain because it contains materials
that originally came from the U.S. Environmental Protection Agency.
Imports:
config,
golem,
magrittr,
golem,
htmltools,
readxl,
writexl,
Expand All @@ -54,6 +54,7 @@ Imports:
Remotes:
github::USEPA/TADA
Suggests:
config,
testthat,
remotes,
covr,
Expand Down
2 changes: 1 addition & 1 deletion dev/01_start.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Building a Prod-Ready, Robust Shiny Application.
#
# README: each step of the dev files is optional, and you don't have to
# fill every dev scripts before getting started.
# fill every dev script before getting started.
# 01_start.R should be filled at start.
# 02_dev.R should be used to keep track of your development during the project.
# 03_deploy.R should be used once you need to deploy your app.
Expand Down
25 changes: 10 additions & 15 deletions dev/02_dev.R
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,19 @@ usethis::use_package("combinat")

## Add modules ----
## Create a module infrastructure in R/
##golem::add_module( name = "name_of_module1" ) # Name of the module
## golem::add_module( name = "import" ) # Name of the import module
# golem::add_module(name = "query_data", with_test = TRUE) # Name of the module
# golem::add_module(name = "overview", with_test = TRUE) # Name of the module
# golem::add_module(name = "upload_data", with_test = TRUE) # Name of the module
# golem::add_module(name = "summary", with_test = TRUE) # Name of the module
# golem::add_module(name = "TADA_summary") # Name of the module
# golem::add_module(name = "censored_data")
golem::add_module( name = "name_of_module1" ) # Name of the module
golem::add_module( name = "import" ) # Name of the import module
golem::add_module(name = "query_data", with_test = TRUE) # Name of the module
golem::add_module(name = "overview", with_test = TRUE) # Name of the module
golem::add_module(name = "upload_data", with_test = TRUE) # Name of the module
golem::add_module(name = "summary", with_test = TRUE) # Name of the module
golem::add_module(name = "TADA_summary") # Name of the module
golem::add_module(name = "censored_data")

## Add helper functions ----
## Creates fct_* and utils_*
##golem::add_fct( "helpers" )
##golem::add_utils( "helpers" )
golem::add_fct( "helpers" )
golem::add_utils( "helpers" )


## External resources
Expand All @@ -81,11 +81,6 @@ devtools::build_vignettes()
## Set the code coverage service ("codecov" or "coveralls")
usethis::use_coverage()

# Create a summary readme for the testthat subdirectory
# Not available on CRAN
# remotes::install_github('yonicd/covrpage')
# covrpage::covrpage()

## CI ----
## Use this part of the script if you need to set up a CI
## service for your application
Expand Down

0 comments on commit 6e35c34

Please sign in to comment.