-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deployment Help for Brochure application #31
Comments
Hey, Yeah there is an issue with the way shiny proxy works — it iframes the actual app so there might be an issue with that. I will have a look and let you know |
Hey, Thank you! Your help is greatly appreciated. |
Two q for @Brabin3 : -> Do you have specified a @jjfantini I'll work on this, my only current issue is that it requires some time to have a shiny proxy running, a container with a brochure app, and all that is implied by that :) |
@ColinFay that sounds great, I will try to flesh out issues here that I run into when deploying with this method, think it would be helpful for users down the road to have this one paved...looking forward to a fully isolated app environment that is isolated further with brochure -- the data flow design is much better when so explicit. Look forward to the journey ahead :) bear with me, v new to web dev |
@ColinFay so the |
I have something similar on shinyapps.io, where the apps url is: I was able to get things working by:
So now things work well on shinyapps.io, but not locally, as the local url does not have the To fix this we can dynamically generate the redirect href based on getOption("baseurl"). Some function like:
Then, in
In 'production' mode on shinyapps.io, we can add the baseurl option in
Maybe something similar will work in shinyProxy? |
I have built up a multi-page application using Brochure.
I tried to deploy it using Docker & ShinyProxy deployment model.
The app gets deployed and the first page alone loads.
All other pages are missing when deployed with ShinyProxy (404).
In shiny Proxy application.yml file,
container-cmd: ["R", "-e", "shiny::runApp('/root/euler')"]
When I tried to deploy the application without Brochure (i.e Single paged shiny app) then the deployment works.
Any help is greatly invited.
The text was updated successfully, but these errors were encountered: