Is there a way to get access to the raw code of an application hosted on Shinyapps.io. I hosted my shiny application on shiny apps and made multiple changes in my code in my system. I need the older version of my app which has been hosted.
How about downloading it from the dashboard?
Please, note that you'll receive an extensionless file in the archive. Just add .tar to it, and you'll be able to open the file as an archive, as it was mentioned here.
Related
I am trying to develop a shiny app (which is hosted on shinyapps.io). The data resides on a company sharepoint site.
To authenticate users I am following allong the Authenticating from Shiny vignette by #Hong Ooi. This works when I use resource <- "https://graph.microsoft.com" instead of resource <- "https://management.azure.com". I get a token, but am at a loss how to use this to connect to the sharepoint site (to retrieve the data from there).
It could be any or multiple of these:
Settings in Azure Active Directory
Settings for/in the sharepoint site
The R code in the shiny app
Hope someone will have some pointers for me.
I'm not sure if I'm saying this correctly so please feel free to edit the post were need but now that I've created an R Script I know well, I'm learning how to build an interactive web app in R using shiny with the intention of running it on a particular webpage of my website (example.com/shiny-app).
I'm using MotoCMS so I think the only way I could accomplish thus is via the embedd feature. My website is hosted on Godaddy.
With all that being said, is it possible to run a interactive web app in R using Shiny App on GoDaddy hosted MotoCMS Website?
Is there an online tutorial or could someone answer with the step by step process regarding how to run a interactive web app in R using Shiny App on GoDaddy specifically?
If I created a dedicated domain so that I wouldn't have to deal with my CMS but the hosting would still go through GoDaddy, could someone answer with the step by step process regarding how to run a interactive web app in R using Shiny App?
Host your Shiny web app on http://shinyapps.io, then embed the link as a page in your MotoCMS website.
I have a Shiny app that I would like to run on an existing Apache server. I am completely new to servers and don't have much idea of where to start. Unfortunately most of the resources I've found online have been about NGINX and not Apache.
I know something like this is possible, but I am not sure how to start. How can I get started with hosting my own Shiny app on an Apache server?
So you don't run a Shiny app on Apache, Shiny Apps must be run on a Shiny Server. You have several options for deploying a Shiny app to your website. The simplest approach is to publish your app to shinyapps.io then add an IFrame to your website that will display your deployed Shiny app.
Since you have asked about how to run a Shiny App on Apache, I assume you want to deploy your own Shiny Server, which can be deployed on the same machine as your Apache server or on a different machine. Instructions for doing this may be found here: https://www.rstudio.com/products/shiny/download-server/
Once you shiny server is installed you will need to publish your app there. This is accomplished by moving your r files to the appropriate location on your Shiny Server. For details see: http://docs.rstudio.com/shiny-server/#host-a-directory-of-applications-1
Once you have done this and have your app running on Shiny Server, you need to set up Apache(Nginx or another webserver) to act as a proxy to Shiny Server. Here is a link that walks you through the steps: https://support.rstudio.com/hc/en-us/articles/213733868-Running-Shiny-Server-with-a-Proxy
If you have not done this before and do not have experience with Linux or servers, I would expect it to take at least 4 hours.
Apache can't run Shiny.
Alternatively, I suggest a nice and clear tutorial about running the R web app (aka Shiny) using Google cloud. Google cloud offers 300 USD free credit to any new user that I think is good for begninners.
https://www.theorsociety.com/media/3832/data-visualisation-workshop-uploading-a-shiny-app-to-a-server-_14062018122240.pdf
I have made a web application using R Shiny and deployed it with the shinyapps.io using the free mode. The problem that I have is that my application generates a set of .txt files which I need to download them after my application finishes. Is there any way that I can access those generated files? I have seen my shinyapps.io control panel, but I did not find any way to have access to my files.
Can I use Filezilla or a similar tool to have access to those generated files?
So I'm using visual studio 2010 to build a website that was formerly running on PHP, so I'm pretty new to the environment.
In starting the project I built a website project, not a web application project. I know that will probably generate a lot of "never use a website project, use a web application project instead" comments, but bear with me.
I'm attempting to provide our server team with the necessary files to compile on our server for the first time. However they're used to working with web application files, not website files.
Normally they are given the source code and a batch file that compiles the code into deployment directories and then they just move the files to the server from there. I'm pretty sure that the other teams use deployment packages to do this, which obviously isn't an option for a website.
My question is, what would be the equivalent steps for getting the source for a website ready to deploy vs a web application? I have published the website to a separate folder and this has rendered what I think is the equivalent in many ways, but I wanted to make sure.
Also, is it possible to publish certain parts of a website without others?
Please with-hold all the comments about how I should be using a web application instead, google seems to assume that's all that's used out there too.
Thanks!
There isn't much to deploying a web site other than copying the source files to a directory in IIS. It will compile the site automatically on the first page request.
I agree with Britton. I personally prefer web application but with the web site project you have 2 options.
Either a) Upload all the files (including the .vb or .cs files) and the web server will compile on the fly. OR, you can publish to a separate folder locally on your machine, and then upload that folder. I would do the publish if you don't want anyone seeing your source code.