From c20844cb568cf32df9960553e45772fb5f98cc55 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 2 Oct 2025 10:36:50 +0100 Subject: [PATCH] remove devtools dependancy --- app.R | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app.R b/app.R index 6e75330..4175aba 100644 --- a/app.R +++ b/app.R @@ -5,7 +5,11 @@ library(httr) library(shinycssloaders) # For the spinner # Assuming you have your custom functions in a file called 'your_functions.R' -devtools::load_all() + +# List all R files in the directory and source them + + +lapply(list.files(path = "R", pattern = "\\.R$", full.names = T), source) source("secrets")