Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/miraisolutions/ShinyProdPrereq

Prerequisite of Shiny test deployment in training material
https://github.com/miraisolutions/ShinyProdPrereq

Last synced: 3 months ago
JSON representation

Prerequisite of Shiny test deployment in training material

Awesome Lists containing this project

README

        

# Bring your Shiny App to Production Workshop Prerequisites

Package prerequisites for [Mirai's workshop "Bring your Shiny App to Production"](https://mirai-solutions.ch/services/workshops/shinyapp-pro/) can be fulfilled using this repo as follows:

- Create a new RStudio project from the repo (https://github.com/miraisolutions/ShinyProdPrereq)
```
File > New Project... > Version Control > Git
```
- Once in the new project, run at the R console
``` r
install.packages(c("remotes", "renv"))
remotes::install_deps()
```
and then
```
renv::activate()
renv::restore(prompt = FALSE) # you can ignore warnings about a different R version
```