Files
stAndrews/app.R
Rob Wiederstein dd7566ef8e
All checks were successful
Deploy stAndrews / deploy (push) Successful in 40s
Fix: hardcode subdivision choices to remove
runtime data dep in UI
2026-03-13 09:02:22 -04:00

26 lines
469 B
R

# St. Andrews Shiny App - Main entry point
# Modularized version with separate UI and server components
# Load libraries
library(shiny)
library(shinyMobile)
library(leaflet)
library(sf)
library(dplyr)
library(leafpop)
library(DT)
# Load configuration
source("./R/config.R")
# Load UI and server components
source("./R/app_ui.R")
source("./R/app_server.R")
# Create the app
ui <- create_ui()
server <- create_server
# Run the app
shinyApp(ui = ui, server = server)