Skip to content

Commit

Permalink
Update shiny_sqlite_advanced.R
Browse files Browse the repository at this point in the history
  • Loading branch information
albarema authored May 30, 2024
1 parent b6c5c32 commit f81691c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion develop/scripts/shiny_sqlite_advanced.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
# License: MIT
# R version: 4.3.2

# Load libs
quiet <- function(x) { suppressMessages(suppressWarnings(x)) }
quiet(library(shiny))
quiet(library(DT))
quiet(library(DBI))


# Define the UI
ui <- fluidPage(
titlePanel("SQLite R Shiny App"),
Expand Down Expand Up @@ -166,4 +173,4 @@ server <- function(input, output, session) {
}

# Run the app
shinyApp(ui = ui, server = server)
shinyApp(ui = ui, server = server)

0 comments on commit f81691c

Please sign in to comment.