Description Usage Arguments Examples
View source: R/installShinyParallel.R
Installs a Shiny app in a Shiny server, with the multi-session feature
enabled.
It will run in max.sessions
, each with the Shiny app working.
So, comunication between users is limited, if this needs to be done, then
save and load data on hard disk (or use RStudio server pro).
1 2 3 4 5 6 7 |
appDir |
The application to run. Should be one of the following:
|
appName |
Name of the app (path to access it on the server). |
max.sessions |
Number of sessions to use. Defaults to the
|
users.per.session |
Maximum number of admited users per each session.
Defaults to the
|
shinyServerPath |
Path where shiny-server apps are installed by default. |
1 2 3 4 5 6 7 8 | ## Not run:
# If we have a Shiny app at '~/myShinyApp', i.e., we can test our app by:
# shinyParallel::runApp('~/myShinyApp');
# then we can install the app by typing
shinyParallel::installShinyParallel("~/myShinyApp")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.