Questions tagged [rsconnect]
40 questions
3
votes
0 answers
RStudio Connect Failure to Retrieve Package when Deploying Shiny App
I am trying to deploy a Shiny app on RStudio Connect. The deployment progresses until it tries to install the package, 'mvtnorm' from CRAN, at which point I get a 404 error, and the deployment fails.
I've tried the URL from the deployment logs:…

Jacob
- 53
- 3
3
votes
0 answers
How to avoid publishing source code on shinyapps.io server?
On the shinyapps.io dashboard, you see an option to download bundle using which you can download source code to your app. So When I publish the app, can I avoid publishing this bundle on the app server or hide it?

Aakash
- 43
- 3
3
votes
2 answers
Deploy app to shinyapps.io that depends on custom package which itself has dependencies
I would like to deploy a shiny app to shinyapps.io
but I keep failing to publish it all in all for several months now :-(
Could someone please explain to me step-by-step what I need to do for the specific setup outlined below?
Setup
the app…

Rappster
- 12,762
- 7
- 71
- 120
2
votes
1 answer
what is the rsconnect command to deploy a learnr site?
I have a simple one-page learnr site containing several quizzes. It works fine and deploys fine when I press the Deploy ("Publish the application") button in rstudio IDE. I would like to be able to do this programmatically. I have tried commands…

Steve Powell
- 1,646
- 16
- 26
2
votes
0 answers
How can I integrate a GitHub API into my Shiny App to allow table edits to save automatically on GitHub? The app will be published on RStudio Connect
I have a shiny app that reads a table from GitHub. My aim is that when anyone who uses the app and edit the table, given they have access to the repository should be able to save the changes and push it to GitHub using an action button. How would I…

Sahib
- 160
- 8
2
votes
0 answers
Issue Deploying R Shiny App to shinyapps.io
I'm having an issue deploying an updated version of my Shiny App. Whenever I attempt to deploy, my system stalls on Starting Upload Now and I get this error repeatedly.
This output is with the Show Diagnostic Information when Publishing flag turned…

Max Feinberg
- 810
- 1
- 6
- 21
1
vote
1 answer
rsconnect cannot publish to server when account is setup programmatically with API Keys
I have a setup with an RStudio Workbench and Connect server, where I want to automatically publish content to Connect.
When I connect to the connect server manually (clicking the blue share button, authenticating etc, and then publishing the…

David
- 9,216
- 4
- 45
- 78
1
vote
2 answers
RStudio/Posit workbench how does it create the URL path
I am running a shiny app locally on RStudio/Posit workbench in the browser.
The app just prints its current URL
library(shiny)
ui <- basicPage(
verbatimTextOutput("url")
)
server <- function(input, output, session){
output$url <- renderText({
…

David
- 9,216
- 4
- 45
- 78
1
vote
0 answers
deployment of shiny app fails due to cmake
I have a shiny app that uses nloptr , which in turns needs cmake. I installed it locally and everything works, when I try to publish it to an private rsconnect server, it fails with the following error:
[Connect] 2022/12/06 14:24:08.680333733 CMake…

Jorge Kageyama
- 393
- 4
- 17
1
vote
1 answer
Child Task 840897391 failed: Error parsing manifest: Manifest file count (6742) greater than maximum allowed (6000)
I am redploying an updated Shiny app after adding some more data. I get the error "Child Task 840897391 failed: Error parsing manifest: Manifest file count (6742) greater than maximum allowed (6000)".
I did the following
deleted rsconnect and…

Tinniam V. Ganesh
- 1,979
- 6
- 26
- 51
1
vote
0 answers
ssh keys on Rstudio connect server
I am using scp (RCurl library) to transfer a filer from remote server to local directory. I have created a ssh key pair and it works fine in my local. However, I am now trying to deploy my app(The app transfers data from remote to local) to RStudio…

sk8
- 170
- 1
- 9
1
vote
1 answer
Force rsconnect::deployApp() to fail to test 'on.failure'
I have a shiny application which updates each night via rsconnect::deployApp using a batch file and scheduled task. This process is currently functioning as intended, but currently the only way to confirm the success of the entire procedure is to…

TTS
- 1,818
- 7
- 16
1
vote
1 answer
shiny app unreachable by shinyloadtest library
I am trying to load-test a shiny app on RStudio Connect. The shinyloadtest library claims to be able to load-test shiny apps on Rstudio Connect. I have installed this library and the shinnycannon app/library. I try to run…

Oliver Causey
- 31
- 6
1
vote
0 answers
rsconnect (& PKI installation) failure
im trying to install rsconnect to connect to shinyapps.io for online hosting. This is my first app so bear with me.
while installing rsconnect through:
install.packages("rsconnect")
it runs through the installation with the checks etc:
checking for…

rctwotwentyfour
- 11
- 3
1
vote
1 answer
Error with configuring bookdown.org account using bookdown::publish_book() in RStudio
When trying to publish a book (for the first time) on bookdown.org using
bookdown::publish_book(render = "none")
I get the following error message:
You do not currently have a bookdown.org publishing account configured on this system.
Would you…

Geir Bolstad
- 11
- 2