I am trying to access a flexdashboard from another machine in my local network (both windows machines).
From this this post I found out shiny behavior was changed to avoid this by default starting from version 0.9.0. For a shiny application only, this could be easily done setting the host
option when calling runApp
(source):
runApp("app_name",host="0.0.0.0",port=3168)
Is there a way to specify host
paramenter on a flexdashboard header? Or alternatively configure shiny to use a specific host by defult? The header of my current flexdashboard is:
---
title: "My analysis"
output:
flexdashboard::flex_dashboard:
orientation: rows
social: menu
source_code: embed
runtime: shiny
---