Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/miraisolutions/ShinyProdPrereq
- Owner: miraisolutions
- License: agpl-3.0
- Archived: true
- Created: 2020-11-20T13:15:30.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-10T10:18:50.000Z (about 1 year ago)
- Last Synced: 2024-06-05T01:45:13.134Z (5 months ago)
- Language: R
- Homepage:
- Size: 32.2 KB
- Stars: 1
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- jimsghstars - miraisolutions/ShinyProdPrereq - Prerequisite of Shiny test deployment in training material (R)
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
```