From 3883c665f067aa2e46516274db341ce383ae9609 Mon Sep 17 00:00:00 2001 From: Marc Kohaupt Date: Wed, 13 Sep 2023 14:20:39 +0200 Subject: [PATCH] fix: config.env not found `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 4e9ef9d0c0..a6838250a9 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"