I have a shiny app that we are using in my organization. The app has many R functions that are sourced in, html files, .css templates, etc, data sets, example files, and so on so this has become a large app.
My goal is to easily share the files needed to others so they can use them. I am doing this now by zipping the files, and users extract the program on their own computer and run the program.
This works, but has many limits. For example, we are in the initial phases and still working out bugs, so I am constantly emailing new updates and so on.
I have read all of the ways to share shiny and have used github and other web hosting services before to set up my app for users who do not have R and only use the app via the web.
I have no interest in building an R package. As a package maintainer now, the pain of building R packages is more than what I want to do for this current work.
Ideally, I would love for there to be a way to runUrl() on my .zip where I can save my zip file on a network drive that my coworkers have access to. I do not think this works based on the shiny help documentation, but am asking to see if anything has changed and does allow for this.
Also, wondering if any thought has been giving to make a shiny program a self contained executable such that users can simply launch the program from a desktop icon or something. I did this with python many years ago, it required that the user had python installed on their machine, but the program ran on top of that seamlessly.
Thank you