Package Options
options.RdThe rsconnect package supports several options that control the method used for http communications, the printing of diagnostic information for http requests, and the launching of an external browser after deployment.
Details
Supported global options include:
rsconnect.ca.bundlePath to a custom bundle of Certificate Authority root certificates to use when connecting to servers via SSL. This option can also be specied in the environment variable
RSCONNECT_CA_BUNDLE. Leave undefined to use your system's default certificate store.rsconnect.check.certificateWhether to check the SSL certificate when connecting to a remote host; defaults to
TRUE. Setting toFALSEis insecure, but will allow you to connect to hosts using invalid certificates as a last resort.rsconnect.httpHttp implementation used for connections to the back-end service:
libcurlSecure https using the curlR packagercurlSecure https using the RcurlR package (deprecated)curlSecure https using the curl system utility internalInsecure http using raw sockets If no option is specified then
libcurlis used by default.rsconnect.http.traceWhen
TRUE, trace http calls (prints the method, path, and total milliseconds for each http request)rsconnect.http.trace.jsonWhen
TRUE, trace JSON content (shows JSON payloads sent to and received from the server))rsconnect.http.verboseWhen
TRUE, print verbose output for http connections (useful only for debugging SSL certificate or http connection problems)rsconnect.tarBy default,
rsconnectuses R's internaltarimplementation to compress content bundles. This may cause invalid bundles in some environments. In those cases, use this option to specify a path to an alternatetarexecutable. This option can also be specified in the environment variableRSCONNECT_TAR. Leave undefined to use the defaulttarimplementation.rsconnect.rcurl.optionsA named list of additional cURL options to use when using the RCurl HTTP implementation in R. Run
RCurl::curlOptions()to see available options.rsconnect.libcurl.optionsA named list of additional cURL options to use when using the curl HTTP implementation in R. Run
curl::curl_options()to see available options.rsconnect.error.traceWhen
TRUE, print detailed stack traces for errors occurring during deployment.rsconnect.launch.browserWhen
TRUE, automatically launch a browser to view applications after they are deployedrsconnect.locale.cacheWhen
FALSE, disable the detected locale cache (Windows only).rsconnect.localeOverride the detected locale.
rsconnect.max.bundle.sizeThe maximum size, in bytes, for deployed content. If not set, defaults to 3 GB.
rsconnect.max.bundle.filesThe maximum number of files to deploy. If not set, defaults to 10,000.
rsconnect.force.update.appsWhen
TRUE, bypasses the prompt to confirm whether you wish to update previously-deployed contentrsconnect.pre.deployA function to run prior to deploying content; it receives as an argument the directory containing the content about to be deployed.
rsconnect.post.deployA function to run after successfully deploying content; it receives as an argument the directory containing the content about to be deployed.
rsconnect.python.enabledWhen
TRUE, use the python executable specified by theRETICULATE_PYTHONenvironment variable and add apythonsection to the deployment manifest. By default, python is enabled when deploying to Posit Connect and disabled when deploying to shinyapps.io.
When deploying content from the RStudio IDE, the rsconnect package's deployment methods are executed in a vanilla R session that doesn't execute startup scripts. This can make it challenging to ensure options are set properly prior to push-button deployment, so the rsconnect package has a parallel set of “startup” scripts it runs prior to deploying. The follow are run in order, if they exist, prior to deployment:
$R_HOME/etc/rsconnect.siteLike
Rprofile.site; for site-wide pre-flight and options.~/.rsconnect_profileLike
.Rprofile; for user-specific content.$PROJECT/.rsconnect_profileLike
.Rprofilefor projects;$PROJECThere refers to the root directory of the content being deployed.
Note that, unlike .Rprofile, these files don't replace each other; all three will be run if they exist.
Examples
if (FALSE) { # \dontrun{
# use curl for http connections
options(rsconnect.http = "curl")
# trace http requests
options(rsconnect.http.trace = TRUE)
# print verbose output for http requests
options(rsconnect.http.verbose = TRUE)
# print JSON content
options(rsconnect.http.trace.json = TRUE)
# don't automatically launch a browser after deployment
options(rsconnect.launch.browser = FALSE)
} # }