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