Reputation: 624
I have successfully deployed my own instance in AWS running on Ubuntu Server 12.04 LTS with the 64-bit version. how can I deploy my local app I have created to my instance so that it is running on my shiny server in AWS? running sudo cp -R ~/MY-APP /var/shiny-server/www/
I can't seem to get it to work.
Upvotes: 2
Views: 2955
Reputation: 594
You can use the ramazon package, that I developed after facing the same problem. This package takes care of all steps needed to deploy a shiny app on an Amazon ec2 instance.
User is required to just run the ramazon() function, passing the public_DNS and the key pair name.
You can find the package repo at: https://github.com/AndreaCirilloAC/ramazon
Hope this will help you out.
Andrea
Upvotes: 0
Reputation: 17517
Short answer: recent versions of Shiny Server expect applications to be hosted in /srv/shiny-server/
.
Long answer: Try out one of the Quick Start Guides in the Admin Guide. The first one will show you how to deploy a simple Shiny App. It will walk you through each command to get up and running with a sample application.
Upvotes: 2