I want to deploy the shiny app as a webpage with this command line
runApp(shinyApp(ui, server), host="0.0.0.0" , port = 3994 ,launch.browser = TRUE)
But i got this error when running the app
Error in runApp(app) : Can't call
runApp()
from withinrunApp()
. If your application code containsrunApp()
, please remove it.
The thing is there isn't an other runApp command
and i can run the App with :
app <- shinyApp(ui, server)