I would like to develop a bunch of Shiny apps, each of them working (and editing) the same set of data. Is that feasible and if yes, how should the project be structured?
1 Shiny app
The way I am used to structure my shiny app is the following:
2+ Shiny apps
Is there a way to refer to another location for the data, or to store apps within the root folder this way:
each app using data located in the data folder. For each app, ui.R, server.R and global.R are stored in the 'app_i' folder.
From what I know ui.R, server.R and global.R should always be located at the root of the project, which makes it impossible to work with multiple apps on the same dataset..
Thank you in advance for your views on this, and for sharing best practices.
Regards