Currently I have a R shiny app, to run it I open up RStudio and execute
setwd(\"C:/Users/Me/Desktop/R/ShinyProject2\")
library(shiny)
......
runApp()
I faced the same problem and used the two following solutions that both worked fine.
Advantage: the app is accessible anytime from anywhere.
Drawback: only 25 active hours per month.
Method:
Advantage: as much active hours as you need.
Drawbacks: requires being on the same local network (or use a VPN). The app must be running constantly on a computer connected to this network. Furthermore, it cannot perform computation for more than one user at a time.
Method: You need to run the app on your computer and share it on the LAN by changing the runapp command to:
runApp(host="0.0.0.0",port=5050)
Then the app is accessible on http://[your-IP-address]:5050 (see this: Hosting LAN Shiny apps run from command line)