gitextract__wtwsl8q/ ├── .Rbuildignore ├── .github/ │ ├── .gitignore │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ └── config.yml │ └── workflows/ │ ├── R-CMD-check.yaml │ ├── check-no-suggests.yaml │ ├── connect-integration.yaml │ ├── format-suggest.yaml │ ├── lint.yaml │ ├── pkgdown.yaml │ ├── rhub.yaml │ └── shinyapps-integration.yaml ├── .gitignore ├── .lintr ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── .editorconfig │ ├── account-find.R │ ├── accounts.R │ ├── appDependencies.R │ ├── appMetadata-quarto.R │ ├── appMetadata.R │ ├── applications.R │ ├── auth.R │ ├── bundle.R │ ├── bundleFiles.R │ ├── bundlePackage.R │ ├── bundlePackagePackrat.R │ ├── bundlePackageRenv.R │ ├── bundlePython.R │ ├── certificates.R │ ├── client-cloudAuth.R │ ├── client-connect.R │ ├── client-connectCloud.R │ ├── client-connectCloudLogs.R │ ├── client-identityFederation.R │ ├── client-shinyapps.R │ ├── client.R │ ├── config.R │ ├── configMigrate.R │ ├── configureApp.R │ ├── cookies.R │ ├── deployAPI.R │ ├── deployApp.R │ ├── deployDoc.R │ ├── deploySite.R │ ├── deployTFModel.R │ ├── deploymentTarget.R │ ├── deployments-find.R │ ├── deployments.R │ ├── envvars.R │ ├── http-httr2.R │ ├── http-libcurl.R │ ├── http.R │ ├── ide.R │ ├── import-standalone-obj-type.R │ ├── import-standalone-types-check.R │ ├── imports.R │ ├── lint-framework.R │ ├── lint.R │ ├── linters.R │ ├── locale.R │ ├── purgeApp.R │ ├── restartApp.R │ ├── rpubs.R │ ├── rsconnect-package.R │ ├── secret.R │ ├── servers.R │ ├── tasks.R │ ├── terminateApp.R │ ├── title.R │ ├── usage.R │ ├── utils-cli.R │ ├── utils.R │ ├── utm.R │ ├── writeManifest.R │ └── zzz.R ├── README.Rmd ├── README.md ├── RELEASE.md ├── _pkgdown.yml ├── cran-comments.md ├── examples/ │ └── example-linter.R ├── inst/ │ ├── cert/ │ │ ├── api.connect.posit.cloud.pem │ │ ├── cacert.pem │ │ └── shinyapps.io.pem │ ├── examples/ │ │ ├── diamonds/ │ │ │ ├── server.R │ │ │ └── ui.R │ │ └── sessioninfo/ │ │ ├── server.R │ │ └── ui.R │ └── resources/ │ ├── environment.py │ └── pyproject.py ├── man/ │ ├── accountUsage.Rd │ ├── accounts.Rd │ ├── addAuthorizedUser.Rd │ ├── addLinter.Rd │ ├── addServer.Rd │ ├── appDependencies.Rd │ ├── applicationConfigDir.Rd │ ├── applications.Rd │ ├── configureApp.Rd │ ├── connectApiUser.Rd │ ├── connectCloudUser.Rd │ ├── connectSPCSUser.Rd │ ├── deployAPI.Rd │ ├── deployApp.Rd │ ├── deployDoc.Rd │ ├── deploySite.Rd │ ├── deployTFModel.Rd │ ├── deployments.Rd │ ├── forgetDeployment.Rd │ ├── generateAppName.Rd │ ├── lint.Rd │ ├── linter.Rd │ ├── listAccountEnvVars.Rd │ ├── listBundleFiles.Rd │ ├── listDeploymentFiles.Rd │ ├── makeLinterMessage.Rd │ ├── oldApplicationConfigDir.Rd │ ├── options.Rd │ ├── purgeApp.Rd │ ├── removeAuthorizedUser.Rd │ ├── resendInvitation.Rd │ ├── restartApp.Rd │ ├── rpubsUpload.Rd │ ├── rsconnect-package.Rd │ ├── rsconnectConfigDir.Rd │ ├── rsconnectPackages.Rd │ ├── rsconnectProxies.Rd │ ├── servers.Rd │ ├── setAccountInfo.Rd │ ├── setProperty.Rd │ ├── showInvited.Rd │ ├── showLogs.Rd │ ├── showMetrics.Rd │ ├── showProperties.Rd │ ├── showUsage.Rd │ ├── showUsers.Rd │ ├── syncAppMetadata.Rd │ ├── taskLog.Rd │ ├── tasks.Rd │ ├── terminateApp.Rd │ ├── unsetProperty.Rd │ └── writeManifest.Rd ├── revdep/ │ ├── .gitignore │ ├── README.md │ ├── cran.md │ ├── failures.md │ └── problems.md ├── rsconnect.Rproj ├── tests/ │ ├── integration/ │ │ ├── example-shiny/ │ │ │ └── app.R │ │ ├── setup.R │ │ └── test-deploy.R │ ├── manual/ │ │ ├── appMode.Rmd │ │ ├── dependencies.Rmd │ │ ├── deploySite.Rmd │ │ └── publishing-dialog.Rmd │ ├── shinyapps-integration/ │ │ ├── example-shiny/ │ │ │ ├── app.R │ │ │ └── manifest.json │ │ ├── setup.R │ │ └── test-shinyapps-deploy.R │ ├── testthat/ │ │ ├── _snaps/ │ │ │ ├── account-find.md │ │ │ ├── accounts.md │ │ │ ├── appDependencies.md │ │ │ ├── appMetadata-quarto.md │ │ │ ├── appMetadata.md │ │ │ ├── applications.md │ │ │ ├── bundle.md │ │ │ ├── bundleFiles.md │ │ │ ├── bundlePackage.md │ │ │ ├── bundlePackagePackrat.md │ │ │ ├── bundlePackageRenv.md │ │ │ ├── bundlePython.md │ │ │ ├── client-connect.md │ │ │ ├── cookies.md │ │ │ ├── deployApp.md │ │ │ ├── deployDoc.md │ │ │ ├── deploymentTarget.md │ │ │ ├── deployments-find.md │ │ │ ├── deployments.md │ │ │ ├── http-libcurl.md │ │ │ ├── http.md │ │ │ ├── ide.md │ │ │ ├── lint.md │ │ │ ├── linters.md │ │ │ ├── secret.md │ │ │ ├── servers.md │ │ │ └── writeManifest.md │ │ ├── certs/ │ │ │ ├── example.com.pem │ │ │ ├── invalid.crt │ │ │ ├── localhost.pem │ │ │ ├── sample.crt │ │ │ └── two-cas.crt │ │ ├── helper-content.R │ │ ├── helper-http.R │ │ ├── helper-paths.R │ │ ├── helper.R │ │ ├── multibyte-characters/ │ │ │ └── app.R │ │ ├── packages/ │ │ │ ├── latin1package/ │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── NAMESPACE │ │ │ │ ├── R/ │ │ │ │ │ └── hello.R │ │ │ │ └── man/ │ │ │ │ └── hello.Rd │ │ │ ├── utf8package/ │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── NAMESPACE │ │ │ │ ├── R/ │ │ │ │ │ └── hello.R │ │ │ │ └── man/ │ │ │ │ └── hello.Rd │ │ │ └── windows1251package/ │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R/ │ │ │ │ └── hello.R │ │ │ └── man/ │ │ │ └── hello.Rd │ │ ├── quarto-doc-long-chunk/ │ │ │ └── index.qmd │ │ ├── quarto-doc-none/ │ │ │ └── quarto-doc-none.qmd │ │ ├── renv-recommended/ │ │ │ └── dependences.R │ │ ├── shiny-app-in-subdir/ │ │ │ └── my-app/ │ │ │ ├── server.R │ │ │ └── ui.r │ │ ├── shiny-rmds/ │ │ │ ├── non-shiny-rmd.Rmd │ │ │ ├── shiny-rmd-dashes.Rmd │ │ │ └── shiny-rmd-dots.Rmd │ │ ├── shinyapp-appR/ │ │ │ ├── app.R │ │ │ └── rsconnect/ │ │ │ └── colorado.posit.co/ │ │ │ └── hadley/ │ │ │ └── shinyapp-appR.dcf │ │ ├── shinyapp-simple/ │ │ │ ├── server.R │ │ │ ├── shinyapp-simple.Rproj │ │ │ └── ui.R │ │ ├── shinyapp-singleR/ │ │ │ └── single.R │ │ ├── shinyapp-with-absolute-paths/ │ │ │ ├── ShinyDocument.Rmd │ │ │ ├── ShinyPresentation.Rmd │ │ │ ├── data/ │ │ │ │ └── College.txt │ │ │ ├── server.R │ │ │ └── ui.R │ │ ├── shinyapp-with-browser/ │ │ │ ├── server.R │ │ │ └── ui.R │ │ ├── static-with-quarto-yaml/ │ │ │ ├── _quarto.yml │ │ │ └── slideshow.html │ │ ├── test-account-find.R │ │ ├── test-accounts.R │ │ ├── test-appDependencies.R │ │ ├── test-appMetadata-quarto.R │ │ ├── test-appMetadata.R │ │ ├── test-applications.R │ │ ├── test-bundle.R │ │ ├── test-bundleFiles.R │ │ ├── test-bundleNodejs.R │ │ ├── test-bundlePackage.R │ │ ├── test-bundlePackagePackrat.R │ │ ├── test-bundlePackageRenv.R │ │ ├── test-bundlePython.R │ │ ├── test-cert.R │ │ ├── test-client-connect.R │ │ ├── test-client-connectCloud.R │ │ ├── test-client.R │ │ ├── test-config.R │ │ ├── test-cookies.R │ │ ├── test-deployApp.R │ │ ├── test-deployDoc.R │ │ ├── test-deploySite.R │ │ ├── test-deploymentTarget.R │ │ ├── test-deployments-find.R │ │ ├── test-deployments.R │ │ ├── test-http-httr2.R │ │ ├── test-http-libcurl.R │ │ ├── test-http.R │ │ ├── test-ide.R │ │ ├── test-identityFederation.R │ │ ├── test-lint.R │ │ ├── test-linters.R │ │ ├── test-locale.R │ │ ├── test-plumber/ │ │ │ └── plumber.R │ │ ├── test-reticulate-rmds/ │ │ │ ├── implicit.Rmd │ │ │ └── index.Rmd │ │ ├── test-rmd-bad-case/ │ │ │ └── index.Rmd │ │ ├── test-rmds/ │ │ │ ├── index.Rmd │ │ │ ├── parameterized.Rmd │ │ │ └── simple.Rmd │ │ ├── test-secret.R │ │ ├── test-servers.R │ │ ├── test-spcs.R │ │ ├── test-title.R │ │ ├── test-utils.R │ │ └── test-writeManifest.R │ └── testthat.R └── vignettes/ ├── .gitignore └── custom-http.Rmd