From ea7d9f762658f719b806d95f2746a34f2e4927b4 Mon Sep 17 00:00:00 2001 From: k2s Date: Wed, 8 Jun 2022 21:53:51 +0000 Subject: [PATCH] fix: VIKUNJA_SERVICE_JWT_SECRET should be VIKUNJA_SERVICE_JWTSECRET fixed in magefile too --- magefile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magefile.go b/magefile.go index 026425473..b5a0e17fc 100644 --- a/magefile.go +++ b/magefile.go @@ -1051,7 +1051,7 @@ func printConfig(config []*configOption, level int, parent string) (rendered str fullPath := parent + "." + option.key rendered += "Full path: `" + fullPath + "`\n\n" - rendered += "Environment path: `VIKUNJA_" + strcase.ToScreamingSnake(fullPath) + "`\n\n" + rendered += "Environment path: `VIKUNJA_" + strcase.ToScreamingSnake(strings.ToUpper(fullPath)) + "`\n\n" } }