golem
golem copied to clipboard
A Framework for Building Robust Shiny Apps
To fix #819 , there is the possibility to refactor the internals of `use_external_XXX` type functions in `use_files.R ` **_prior to the addition of a new replace arg_**. This may...
fixes #845 Maybe `path` is a bit more general because it can be used for files and package-dirs, but the issue suggests `pkg`. I have made a commit per file...
today, the `add_dockerfile_with_renv` fonction create 2 Dockerfile tu be able to reuse the renv cache from the first image, in se second one. like this : ``` docker build -f...
If you supply a lockfile to `golem::add_dockerfile_with_renv_heroku()` called simply `renv.lock` then the second/main Dockerfile created still expects a file called `renv.lock.prod` which is what is automatically generated when you do...
in dev branch, the code : ``` if (install_required_packages) { install_dev_deps("attachment", force_install = install_required_packages) to_install
**Describe the bug** When deploying to RStudio connect the following error appears despite working locally. This has been reproduced on a blank project: ``` Error in value[[3L]](cond) : Calls: local...
[BUG]
**Describe the bug** `add_dockerfile_with_renv_shinyproxy()` fails when working directory is not same as the golem project directory, even when supplying `source_folder`. **To Reproduce** 1. create a new golem project `golem.dummy` in...
I have a shiny app (`golem`) and I would like to put it on a shiny-server (locally). golem::add_shinyserver_file() Which creates an `app.R` file. I downloaded the package with `devtools::install_github()` in...
When I deploy my golem app to shinyapps.io, named "jzApp", I get the warning: ```r rsconnect::deployApp( appName = desc::desc_get_field("Package"), appTitle = desc::desc_get_field("Package"), appFiles = c( # Add any additional files...
I prefer to have my shiny apps run as a background job so that the console remains free. Is there a way to change the way `run_dev()` works in order...