From 827a91e820df9113f2e23301c480b1a1609f3b5e Mon Sep 17 00:00:00 2001 From: Marc Kohaupt <debuglevel@gmail.com> Date: Tue, 3 Oct 2023 20:00:26 +0200 Subject: [PATCH] fix: config.env not found (#5410) `bin/start` should most likely read `bin/config.env` instead of `config.env` as the working directory is probably *not* `./bin` but `.` --- bin/start | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/start b/bin/start index 4e9ef9d0..a6838250 100755 --- a/bin/start +++ b/bin/start @@ -1,6 +1,6 @@ #!/usr/bin/env bash -source config.env +source bin/config.env echo "Greenlight-v3 starting on port: $PORT" -- GitLab