source("create_shiny_app.R")
source("run.R")
└───first-app -- Name of the shiny app directory
│ global.R -- file to hold all global variables
│ run.R -- call this file to run the shiny app: source("run.R")
│ server.R -- server side codes are kept in this file
│ ui.R -- client or user interface codes are kept in this file
└───data/ -- directory to hold datasets for the shiny app
After running this app, it pulls the value of name
global variable which is defined in global.R and greets you with that name.