Skip to content

Commit

Permalink
working on dev stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
tbradley1013 committed Mar 21, 2020
1 parent 1729d51 commit 060f1db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dev/01_start.R
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ golem::use_utils_server()
# You're now set! ----

# go to dev/02_dev.R
rstudioapi::navigateToFile( "dev/02_dev.R" )
rstudioapi::navigateToFile("dev/02_dev.R")

4 changes: 2 additions & 2 deletions dev/02_dev.R
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ usethis::use_package("waiter")

## Add modules ----
## Create a module infrastructure in R/
golem::add_module(name = "name_of_module1") # Name of the module
golem::add_module(name = "load_data") # Name of the module
golem::add_module(name = "name_of_module2") # Name of the module

## Add helper functions ----
Expand All @@ -45,7 +45,7 @@ golem::add_module(name = "name_of_module2") # Name of the module

## Add internal datasets ----
## If you have data in your package
usethis::use_data_raw( name = "my_dataset", open = FALSE )
usethis::use_data_raw(name = "my_dataset", open = FALSE)

## Tests ----
## Add one line by test you want to create
Expand Down

0 comments on commit 060f1db

Please sign in to comment.