neversaint
neversaint

Reputation: 63984

Can Shiny Server Serve a HTML page without ui.R or server.R

I have a HTML doc created with RStudio's RMarkdown. Is there a way I can serve that page in Shiny server without going through attaching it into ui.R or server.R?

If so, how can I go about it?

Upvotes: 1

Views: 552

Answers (1)

Dirk is no longer here
Dirk is no longer here

Reputation: 368191

See the documentation for dynamic / interactive Markdown documents.

I had long converted all my apps from using ui.R and server.R to using a single app.R; I now convert them to being index.Rmd as having flexdashboard with shiny is the best thing yet.

Upvotes: 2

Related Questions