Rename main file to app

This commit is contained in:
2025-12-15 16:44:51 +01:00
parent 7ba1b9cd4c
commit d48f8cfb25

20
app.R Normal file
View File

@@ -0,0 +1,20 @@
library(shiny)
library(bslib)
library(leaflet)
library(sf)
library(htmltools)
library(dplyr)
library(purrr)
library(ggplot2)
library(ggthemes)
library(stringr)
source("global.R")
source("ui.R")
source("server.R")
options(shiny.host = '0.0.0.0')
options(shiny.port = 8888)
shinyApp(ui = ui, server = server)