From 708ec66d9b8d96770901a03ecc6be4c3b62eaffd Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Thu, 6 May 2021 18:28:04 +0300 Subject: [PATCH] Don't indent TOML keys deeper than their sections --- config-demo.toml | 22 +++++++++++----------- config.toml.sample | 34 +++++++++++++++++----------------- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/config-demo.toml b/config-demo.toml index 7aff549c..f61a22ad 100644 --- a/config-demo.toml +++ b/config-demo.toml @@ -1,15 +1,15 @@ [app] - # Interface and port where the app will run its webserver. - address = "0.0.0.0:9000" +# Interface and port where the app will run its webserver. +address = "0.0.0.0:9000" # Database. [db] - host = "demo-db" - port = 5432 - user = "listmonk" - password = "listmonk" - database = "listmonk" - ssl_mode = "disable" - max_open = 25 - max_idle = 25 - max_lifetime = "300s" +host = "demo-db" +port = 5432 +user = "listmonk" +password = "listmonk" +database = "listmonk" +ssl_mode = "disable" +max_open = 25 +max_idle = 25 +max_lifetime = "300s" diff --git a/config.toml.sample b/config.toml.sample index 7b09b772..21c2d000 100644 --- a/config.toml.sample +++ b/config.toml.sample @@ -1,22 +1,22 @@ [app] - # Interface and port where the app will run its webserver. - address = "0.0.0.0:9000" +# Interface and port where the app will run its webserver. +address = "0.0.0.0:9000" - # BasicAuth authentication for the admin dashboard. This will eventually - # be replaced with a better multi-user, role-based authentication system. - # IMPORTANT: Leave both values empty to disable authentication on admin - # only where an external authentication is already setup. - admin_username = "listmonk" - admin_password = "listmonk" +# BasicAuth authentication for the admin dashboard. This will eventually +# be replaced with a better multi-user, role-based authentication system. +# IMPORTANT: Leave both values empty to disable authentication on admin +# only where an external authentication is already setup. +admin_username = "listmonk" +admin_password = "listmonk" # Database. [db] - host = "db" - port = 5432 - user = "listmonk" - password = "listmonk" - database = "listmonk" - ssl_mode = "disable" - max_open = 25 - max_idle = 25 - max_lifetime = "300s" +host = "db" +port = 5432 +user = "listmonk" +password = "listmonk" +database = "listmonk" +ssl_mode = "disable" +max_open = 25 +max_idle = 25 +max_lifetime = "300s"