Set a property on currently deployed ShinyApps application.
setProperty(
propertyName,
propertyValue,
appPath = getwd(),
appName = NULL,
account = NULL,
server = NULL,
force = FALSE
)
Name of property
Property value
Directory or file that was deployed. Defaults to current working directory.
Name of application
Uniquely identify a remote server with either your
user account
, the server
name, or both. If neither are supplied, and
there are multiple options, you'll be prompted to pick one.
Use accounts()
to see the full list of available options.
Forcibly set the property
This function only works for ShinyApps servers.
if (FALSE) { # \dontrun{
# set instance size for an application
setProperty("application.instances.count", 1)
# disable application package cache
setProperty("application.package.cache", FALSE)
} # }