From d4f6cbbd3bbd6201ca4ba7d129a12e834dda2714 Mon Sep 17 00:00:00 2001 From: Manuel Cillero Date: Sat, 22 Oct 2022 11:20:43 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Ajusta=20archivos=20de=20configu?= =?UTF-8?q?raci=C3=B3n=20a=20directrices?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- drust/config/common.toml | 8 ++++++++ drust/config/default.toml | 18 ------------------ drust/config/local.toml | 12 ++++++++++++ ...s.default.toml => settings.predefined.toml} | 0 4 files changed, 20 insertions(+), 18 deletions(-) create mode 100644 drust/config/common.toml create mode 100644 drust/config/local.toml rename pagetop/config/{settings.default.toml => settings.predefined.toml} (100%) diff --git a/drust/config/common.toml b/drust/config/common.toml new file mode 100644 index 00000000..1562e469 --- /dev/null +++ b/drust/config/common.toml @@ -0,0 +1,8 @@ +[app] +name = "Drust" +description = """\ + A modern web Content Management System to share your world.\ +""" + +[database] +db_type = "mysql" diff --git a/drust/config/default.toml b/drust/config/default.toml index 32684d4a..1cbcbfea 100644 --- a/drust/config/default.toml +++ b/drust/config/default.toml @@ -1,22 +1,4 @@ -[app] -name = "Drust" -description = """\ - A modern web Content Management System to share your world.\ -""" -#theme = "Aliner" -#theme = "Minimal" -theme = "Bootsier" -#theme = "Bulmix" -language = "es-ES" - [database] -db_type = "mysql" db_name = "drust" db_user = "drust" db_pass = "DrU__#3T" - -[log] -tracing = "Info,pagetop=Debug,sqlx::query=Warn" - -[dev] -#static_files = "../pagetop/static" diff --git a/drust/config/local.toml b/drust/config/local.toml new file mode 100644 index 00000000..8bf0fa36 --- /dev/null +++ b/drust/config/local.toml @@ -0,0 +1,12 @@ +[app] +#theme = "Aliner" +#theme = "Minimal" +theme = "Bootsier" +#theme = "Bulmix" +language = "es-ES" + +[log] +tracing = "Info,pagetop=Debug,sqlx::query=Warn" + +[dev] +#static_files = "../pagetop/static" diff --git a/pagetop/config/settings.default.toml b/pagetop/config/settings.predefined.toml similarity index 100% rename from pagetop/config/settings.default.toml rename to pagetop/config/settings.predefined.toml