Hi,
I've read the documentation here:
Documentation
I have a few questions on deploying my first Shiny App.
- Is there more thorough documentation?
In the documentation, under "Custom Domains" this is written:
Applications deployed on shinyapps.io are accessible by loading a URL of the form:
"//.shinyapps.io/application-name/)"
- I want to set my "application-name" to "RRTest1". How can I set that?
Just like any other Shiny App, my App.R code defines the UI and server and has a call to the shinyApp() function.
-
Must the hardcoded filename be "App.R"?
-
In "App.R", I am using the source() function call to "#include" a few utility functions - I sure hope that works once the app is deployed to ShinyApps.
Source takes a filename which can include a path. Should the path be set to "" and the utility functions file be deployed to the same folder as "App.R"? -
Similar to #4, I am also loading "config.yml" using "config::get(file = ConfigFileName)". Once deployed, I suppose the yml file must be in the same location as "App.R".
-
I have a "default:" and "production:" sections in "config.yml". How do I set things up so that the production settings are used when the app is deployed?
-
I am also using sink() (to a text file on my hard drive locally) and print() for debugging. Where are those messages sent once the app is deployed? Are they sent into the magical bit bucket in the sky or do they crash the app deployed?
If you can answer any of these questions, please enlighten me.
I'll gladly buy you a beer for your help!!!
I hope this isn't against any rules - my email address is richardrogers@rogers.com.
Thank you,
Richard Rogers