imgw / test_server_load.R
alexdum's picture
Refactor station metadata loading to use pre-generated CSV with regeneration logic, and update map tile sources.
b4a8f62
raw
history blame contribute delete
305 Bytes
# test_server_load.R
tryCatch(
{
source("global.R")
source("ui.R")
source("server.R")
print("server.R loaded successfully. Syntax is correct.")
},
error = function(e) {
print(paste("Error loading server.R:", e$message))
quit(status = 1)
}
)