
Last chance! 50% off unlimited learning
Sale ends in
Configure an application running on a remote server.
configureApp(
appName,
appDir = getwd(),
account = NULL,
server = NULL,
redeploy = TRUE,
size = NULL,
instances = NULL,
logLevel = c("normal", "quiet", "verbose")
)
Name of application to configure
Directory containing application. Defaults to current working directory.
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.
Re-deploy application after its been configured.
Configure application instance size
Configure number of application instances
One of "quiet"
, "normal"
or "verbose"
; indicates how
much logging to the console is to be performed. At "quiet"
reports no
information; at "verbose"
, a full diagnostic log is captured.
applications()
, deployApp()
if (FALSE) {
# set instance size for an application
configureApp("myapp", size="xlarge")
}
Run the code above in your browser using DataLab