diff --git a/.gitignore b/.gitignore index accfb7b..1111271 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,5 @@ .httr-oauth .DS_Store .quarto + +Notes.Rmd \ No newline at end of file diff --git a/README.Rmd b/README.Rmd index 00e952f..899c20c 100644 --- a/README.Rmd +++ b/README.Rmd @@ -50,4 +50,4 @@ calenviroscreen ## Development -We have created a [notes document](extra/dev-notes.Rmd) to make development of the package easier. +We have created a [notes document](https://github.com/fhdsl/dasehr/wiki/Dev-notes) to make development of the package easier. diff --git a/README.md b/README.md index 5341a75..3d14617 100644 --- a/README.md +++ b/README.md @@ -43,5 +43,6 @@ calenviroscreen ## Development -We have created a [notes document](extra/dev-notes.Rmd) to make +We have created a [notes +document](https://github.com/fhdsl/dasehr/wiki/Dev-notes) to make development of the package easier. diff --git a/extra/dev-notes.Rmd b/extra/dev-notes.Rmd deleted file mode 100644 index 481d495..0000000 --- a/extra/dev-notes.Rmd +++ /dev/null @@ -1,21 +0,0 @@ - -```{r} -# Load packages necessary -library(devtools) # imports `usethis` -``` - -We are using `devtools` to create this package. To update, make sure you run: - -```{r} -# Create necessary docs! -document() - -# Create workflows - note that these might be updated periodically -usethis::use_github_action("check-standard") -usethis::use_github_action("test-coverage") -usethis::use_github_action("pkgdown") -usethis::use_github_action("pr-commands") - -# Simulate the loading of the library you are creating -load_all() -```