From e920b3e514e717fc05ed524267d3b53e272fec51 Mon Sep 17 00:00:00 2001 From: Naeem Model Date: Mon, 6 Jan 2025 23:55:43 +0000 Subject: Update web app entry point - Rename 'app' -> 'web' - Return shiny app object in entry point function --- inst/app/app.R | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 inst/app/app.R (limited to 'inst/app/app.R') diff --git a/inst/app/app.R b/inst/app/app.R deleted file mode 100644 index 639dc87..0000000 --- a/inst/app/app.R +++ /dev/null @@ -1,13 +0,0 @@ -ui <- htmlTemplate("index.html") - -server <- function(input, output) { - source("scripts/data.R", local = TRUE) - source("scripts/estimators.R", local = TRUE) - - react_values <- reactiveValues() - - data_logic(input, output, react_values) - estimators_logic(input, output, react_values) -} - -shinyApp(ui, server) -- cgit v1.2.3