Pranay Aryal
Pranay Aryal

Reputation: 5396

reducing cycle of redeployment of Shiny Applications in RStudio

Whenever I make changes to Shiny Applications made through RStudio and which is hosted in shiny apps, I have to redeploy it which takes time. How can it this redeployment time be cut short. What automatic functionality or package can be added to achieve this?

Upvotes: 1

Views: 171

Answers (1)

Jeff Allen
Jeff Allen

Reputation: 17517

Unfortunately there's not a way to reduce the time taken to deploy a package to ShinyApps currently. But we do recommend that you develop and test the package locally before deploying it to ShinyApps. That way you can iterate on your application very quickly by testing locally using the shiny::runApp() command then when you're happy with your application, deploy to ShinyApps.io.

Upvotes: 1

Related Questions