From 5b566c9ea20bb5e0f9a211781133673155ad8601 Mon Sep 17 00:00:00 2001 From: Kipras Melnikovas Date: Fri, 30 Oct 2020 00:25:41 +0200 Subject: [PATCH] Update plausible-conf.env - remove the brackets around env var values I got confused why I couldn't log in even though the credentials were correct. Turns out you're supposed to remove the brackets around the env variables - I didn't knew that. I think this will prove less confusing --- plausible-conf.env | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plausible-conf.env b/plausible-conf.env index 2f8e178..bef939f 100644 --- a/plausible-conf.env +++ b/plausible-conf.env @@ -1,5 +1,5 @@ -ADMIN_USER_EMAIL={replace-me} -ADMIN_USER_NAME={replace-me} -ADMIN_USER_PWD={replace-me} -BASE_URL={replace-me} -SECRET_KEY_BASE={replace-me} +ADMIN_USER_EMAIL=replace-me +ADMIN_USER_NAME=replace-me +ADMIN_USER_PWD=replace-me +BASE_URL=replace-me +SECRET_KEY_BASE=replace-me