Hi,
I'm following a tutorial on how to build a simply Shiny app, and I just finished my code,created and verified my Shinypp.io account, and tried to launch my website. Unfortunately it's not working. When I launch the page it's in the "Please Wait" mode and never fully launches.....can someone help me?
The code looks like this. I have inputted the token and secret but removed it here for obvious reasons.
library(shiny)
library(conflicted)
library(rsconnect)
rsconnect::setAccountInfo(name='priyap',token='',secret='')
ui <- fluidPage(
sliderInput(inputId = "num",label="Choose a number",value=25,min=1,max=100),plotOutput("hist")
)
server <- function(input,output) {
output$hist <- renderPlot({
hist(rnorm(input$num))
})
}
shinyApp(ui=ui, server=server)
deployApp()