Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 913 Bytes

File metadata and controls

50 lines (34 loc) · 913 Bytes

memory

The goal of memory is to provide a simple (useless) shiny app to crash test memroy usage in production (shinyproxy, kubernetes,…)

Installation

#install.packages("remotes")
remotes::install_github("vincentguyader/memory")

Example

memory::run_app()

usage from docker

  • from docker hub
docker run -p 80:3838 thinkr/memory
  • (re)build localy
golem::add_dockerfile_with_renv_shinyproxy(source_folder = "deploy")
cd deploy
docker build -f Dockerfile_base --progress=plain -t memory_base .
docker build -f Dockerfile --progress=plain -t memory:latest .
docker run -p 3838:3838 memory:latest
# then go to 127.0.0.1:3838

deploy to posit Connect

rsconnect::deployApp()