diff --git a/internal/config/config_test.go b/internal/config/config_test.go index 9e361b2..1d5676e 100644 --- a/internal/config/config_test.go +++ b/internal/config/config_test.go @@ -12,7 +12,7 @@ func TestLoadDefaults(t *testing.T) { if err != nil { t.Fatalf("load: %v", err) } - if cfg.APIURL != "https://forge.grnds.io" { + if cfg.APIURL != "https://platform.grnds.io" { t.Errorf("APIURL = %q", cfg.APIURL) } if cfg.DefaultTarget != "dev" { diff --git a/internal/config/defaults.go b/internal/config/defaults.go index 7cdb534..1c40f43 100644 --- a/internal/config/defaults.go +++ b/internal/config/defaults.go @@ -1,7 +1,7 @@ package config const ( - DefaultAPIURL = "https://forge.grnds.io" + DefaultAPIURL = "https://platform.grnds.io" DefaultTarget = "dev" DefaultOutput = "table" DefaultColor = "auto"