From 05bb74e1d321c53bae12a3cb06ea4bb5f73b288b Mon Sep 17 00:00:00 2001 From: ClaraCrazy Date: Mon, 11 Nov 2024 18:51:50 +0100 Subject: [PATCH] Make config usage more clear --- application/config.sample.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/config.sample.js b/application/config.sample.js index d6de4f4..e634e5d 100644 --- a/application/config.sample.js +++ b/application/config.sample.js @@ -23,12 +23,12 @@ const config = { http: { // HTTP configuration port: normalizePort(process.env.HTTP_PORT || 3000), // http port to listen on branding: process.env.HTTP_BRANDING || ["48hr.email", "CrazyCo", "https://crazyco.xyz"], // branding [service_title, company_name, company_url] - displaySort: process.env.HTTP_DISPLAY_SORT || 0, // Sorting logic used for display: + displaySort: process.env.HTTP_DISPLAY_SORT || 0, // Sorting logic used for displaying available email domains: // 0 does not modify, // 1 sorts alphabetically, // 2 sorts alphabetically and only shuffles the first item, // 3 shuffles all - hideOther: process.env.HTTP_HIDE_OTHER || false, // Hide other emails in the list and only show first (true) or show all (false) + hideOther: process.env.HTTP_HIDE_OTHER || false, // Hide other email domains in the list and only show first (true) or show all (false) }, }