Skip to content

Commit

Permalink
feat: add support for docker & {renv} (#882)
Browse files Browse the repository at this point in the history
Co-authored-by: Colin Fay <[email protected]>
  • Loading branch information
VincentGuyader and ColinFay authored Jul 13, 2022
1 parent ffd91a6 commit 709a382
Show file tree
Hide file tree
Showing 19 changed files with 885 additions and 245 deletions.
8 changes: 4 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: golem
Title: A Framework for Robust Shiny Applications
Version: 0.3.2
Version: 0.3.3
Authors@R:
c(person(given = "Colin",
family = "Fay",
Expand Down Expand Up @@ -68,7 +68,7 @@ Suggests:
rlang,
covr,
devtools,
dockerfiler (>= 0.1.4),
dockerfiler (>= 0.2.0),
knitr,
pkgbuild,
pkgdown,
Expand All @@ -82,11 +82,11 @@ Suggests:
testthat,
tools,
withr,
attachment
attachment (>= 0.2.5)
VignetteBuilder:
knitr
Config/testthat/edition: 3
Encoding: UTF-8
Language: en-US
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.2
RoxygenNote: 7.2.0
3 changes: 3 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ export(add_css_file)
export(add_dockerfile)
export(add_dockerfile_heroku)
export(add_dockerfile_shinyproxy)
export(add_dockerfile_with_renv)
export(add_dockerfile_with_renv_heroku)
export(add_dockerfile_with_renv_shinyproxy)
export(add_fct)
export(add_html_template)
export(add_js_file)
Expand Down
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
> Notes: the # between parenthesis referes to the related issue on GitHub, and the @ refers to an external contributor solving this issue.
# golem 0.3.3

## New functions

+ `add_dockerfile_with_renv()`, `add_dockerfile_with_renv_heroku()` and `add_dockerfile_with_renv_shinyproxy()` build Dockerfiles that rely on `{renv}`

### Soft deprecated

+ `add_dockerfile`, `add_dockerfile_shinyproxy()` and `add_dockerfile_heroku()` now recommend to switch to their `_with_renv_` counterpart

# golem 0.3.2

### Soft deprecated
Expand Down
Loading

0 comments on commit 709a382

Please sign in to comment.