shinyproxy

Deploy shiny with shinyproxy - no app showing

一个人想着一个人 提交于 2021-02-19 03:54:07
问题 I've developed a shiny app and i'm trying to do a first lightweight deploy using shinyproxy. All installation seems fine. I've installed docker, java. I thought that building a package that wraps the app and other function would be a good idea. So I developed a package (CI) and CI::launch_application is basically a wrapper around RunApp function of shiny package. This is the code: launch_application <- function(launch.browser = interactive(), ...) { runApp( appDir = system.file("app", package

Host shiny app on Windows

折月煮酒 提交于 2021-02-07 14:53:51
问题 First of all my question is very related to How to host Shiny apps on windows server? But, it seems that i need some more reputation to comment in other posts.... My problem/question: I have a shiny app that i want to deploy and make available for people in my department. The paid version of shinyapps.io is not an option for now at least, so i am looking for alternatives. I am working on Windows and this is a problem from what i understand in order to host my own server. I tried the solution

Deploy Shiny app with Flexdashboard

可紊 提交于 2019-12-12 04:26:15
问题 I know how to deploy a shiny app using http://www.shinyproxy.io/. Basically I just need server.R and ui.R. Then using docker it's a pretty easy job. However, when using flexdashboard, I only have the .rmd file. How can I implement this deploy now? 回答1: This is actually supported out of the box by ShinyProxy. You just need to add yourfile.Rmd file in the docker image (i.e. add the relevant commands in your Dockerfile), and then use the docker-cmd: ["R", "-e rmarkdown::run('/path/to/yourFile

How to host Shiny apps on windows server?

巧了我就是萌 提交于 2019-12-03 10:08:29
问题 I have developed some shiny apps which I want to make available to a few selected internal users for testing purposes and continued development. Deploying the apps on the cloud or on shinyapps.io is not an option, as the apps are handling sensitive internal data. Using ShinyServer is unfortunately also not an option, as we have a strict Microsoft only IT architecture and I thus have available only a virtual machine with Windows Server 2012 R2 on it. I have been doing some web search and have

How to host Shiny apps on windows server?

拟墨画扇 提交于 2019-12-03 01:48:15
I have developed some shiny apps which I want to make available to a few selected internal users for testing purposes and continued development. Deploying the apps on the cloud or on shinyapps.io is not an option, as the apps are handling sensitive internal data. Using ShinyServer is unfortunately also not an option, as we have a strict Microsoft only IT architecture and I thus have available only a virtual machine with Windows Server 2012 R2 on it. I have been doing some web search and have found out the following: i.) I could host my apps on the Windows machine as explained here: https:/