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?
source
share