mirror of
https://github.com/agdamsbo/prioritized.grouping.git
synced 2025-09-12 02:29:40 +02:00
Some checks are pending
pkgdown.yaml / pkgdown (push) Waiting to run
27 lines
730 B
R
27 lines
730 B
R
# Typical shiny
|
|
# shiny::runApp(appDir = here::here("app/"),launch.browser = TRUE)
|
|
|
|
|
|
# pak::pak("agdamsbo/project.aid")
|
|
|
|
# merge_scripts(path=here::here("app/functions.R"),files=list.files("R/",pattern = ".R$",full.names = TRUE))
|
|
|
|
# styler::style_file("app/functions.R")
|
|
|
|
project.aid::merge_scripts(
|
|
files = c(
|
|
list.files("R/", pattern = ".R$", full.names = TRUE),
|
|
"app/server_raw.R"
|
|
),
|
|
dest = here::here("app/server.R")
|
|
)
|
|
|
|
shiny::runApp(appDir = "app",launch.browser = TRUE)
|
|
|
|
project.aid::deploy_shiny(
|
|
files = c("server.R", "ui.R"),
|
|
account.name = "agdamsbo",
|
|
name.app = "prioritized-grouping",
|
|
name.token = "rsconnect_agdamsbo_token",
|
|
name.secret = "rsconnect_agdamsbo_secret"
|
|
)
|