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