From 74a7398f6a4cb0b56b81f7f30bab20e0685b817f Mon Sep 17 00:00:00 2001
From: Garet Halliday <ghalliday@gfxlabs.io>
Date: Wed, 28 Sep 2022 14:44:48 -0500
Subject: [PATCH] env for config location

---
 cmd/cgat/main.go | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/cmd/cgat/main.go b/cmd/cgat/main.go
index 88a4c269..f71a1b45 100644
--- a/cmd/cgat/main.go
+++ b/cmd/cgat/main.go
@@ -4,6 +4,7 @@ import (
 	"context"
 	"net/http"
 	_ "net/http/pprof"
+	"os"
 	"time"
 
 	"gfx.cafe/gfx/pggat/lib/config"
@@ -12,9 +13,6 @@ import (
 	"git.tuxpa.in/a/zlog/log"
 )
 
-// test config, should be changed
-const CONFIG = "./config_data.yml"
-
 func main() {
 	//zlog.SetGlobalLevel(zlog.PanicLevel)
 	go func() {
@@ -22,7 +20,11 @@ func main() {
 		log.Println(http.ListenAndServe("localhost:6060", nil))
 	}()
 
-	conf, err := config.Load(CONFIG)
+	confLocation := os.Getenv("CONFIG_LOCATION")
+	if confLocation == "" {
+		confLocation = "./config_data.yml"
+	}
+	conf, err := config.Load(confLocation)
 	if err != nil {
 		panic(err)
 	}
-- 
GitLab