From d498adfb59de9b3c1110aa10ef59400c707c5281 Mon Sep 17 00:00:00 2001 From: Andy Cooper Date: Wed, 15 Aug 2018 14:36:56 -0400 Subject: [PATCH] Add tie-in for testing with houston and orbit locally --- config/config.go | 4 +++- config/types.go | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/config/config.go b/config/config.go index 0ddb94922..607ae30a5 100644 --- a/config/config.go +++ b/config/config.go @@ -41,7 +41,9 @@ var ( CloudAPIPort: newCfg("cloud.api.port", "443"), CloudAPIToken: newCfg("cloud.api.token", ""), Context: newCfg("context", ""), - LocalAPIURL: newCfg("local.api.url", ""), + LocalEnabled: newCfg("local.enabled", ""), + LocalHouston: newCfg("local.houston", ""), + LocalOrbit: newCfg("local.orbit", ""), PostgresUser: newCfg("postgres.user", "postgres"), PostgresPassword: newCfg("postgres.password", "postgres"), PostgresHost: newCfg("postgres.host", "postgres"), diff --git a/config/types.go b/config/types.go index 3610c97ff..714ea1378 100644 --- a/config/types.go +++ b/config/types.go @@ -13,7 +13,9 @@ type cfgs struct { CloudAPIPort cfg CloudAPIToken cfg Context cfg - LocalAPIURL cfg + LocalEnabled cfg + LocalHouston cfg + LocalOrbit cfg PostgresUser cfg PostgresPassword cfg PostgresHost cfg