From 2213812e5fa1755943a21a704e813f629a88ae7a Mon Sep 17 00:00:00 2001 From: dylanbenzi Date: Sun, 30 Nov 2025 12:32:43 -0500 Subject: [PATCH] modify file structure --- .vscode/tasks.json | 2 +- dashboard.Rmd => app/dashboard.Rmd | 0 queries.R => app/queries.R | 0 utils.R => app/utils.R | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename dashboard.Rmd => app/dashboard.Rmd (100%) rename queries.R => app/queries.R (100%) rename utils.R => app/utils.R (100%) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 4b5a231..06136b2 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -19,7 +19,7 @@ "command": "Rscript", "args": [ "-e", - "\"rmarkdown::run('dashboard.Rmd', shiny_args = list(host = '127.0.0.1', port = 1234))\"" + "\"rmarkdown::run('app/dashboard.Rmd', shiny_args = list(host = '127.0.0.1', port = 1234))\"" ], "group": { "kind": "test", diff --git a/dashboard.Rmd b/app/dashboard.Rmd similarity index 100% rename from dashboard.Rmd rename to app/dashboard.Rmd diff --git a/queries.R b/app/queries.R similarity index 100% rename from queries.R rename to app/queries.R diff --git a/utils.R b/app/utils.R similarity index 100% rename from utils.R rename to app/utils.R