R Shiny - host your own apps?

How can I host my own Shiny R application instead of posting it on https://www.shinyapps.io ?

I run these lines below and my application loads on the server above,

> library(shiny)
> library(shinyapps)
> setwd("C:/firstapp")
> deployApp()

but we have our own server that supports R, so can we do this?

ps. I follow this tutorial and get our application hosted on shinyapps.io, but we prefer to use it on our own. Is it possible?

+4
source share
3 answers

deployApp() shinyapps.io. . R-.

, shiny-server shiny-server pro : http://www.rstudio.com/products/shiny/shiny-server/

+3
+2

Source: https://habr.com/ru/post/1583971/


All Articles