refactor: moving config files to separate folder

This commit is contained in:
2026-06-17 16:54:58 +03:00
parent a4d829e3dd
commit a178480912
6 changed files with 9 additions and 8 deletions

View File

@@ -64,7 +64,7 @@ check_and_init_scheme = function() {
# список файлов, изменение которых, приведут к переинициализиации схемы
files_to_watch <- c(
"config.yml",
"config/config.yml",
"R/modules/scheme_generator.R",
"R/modules/utils.R"
)

View File

@@ -14,7 +14,7 @@ credentials <- data.frame(
# Init the database
shinymanager::create_db(
credentials_data = credentials,
sqlite_path = "auth.sqlite", # will be created
sqlite_path = "config/auth.sqlite", # will be created
passphrase = Sys.getenv("AUTH_DB_KEY")
# passphrase = "passphrase_wihtout_keyring"
)