summaryrefslogtreecommitdiff
path: root/internal/config
diff options
context:
space:
mode:
Diffstat (limited to 'internal/config')
-rw-r--r--internal/config/config.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/config/config.go b/internal/config/config.go
index fe7bca5..1738e54 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -45,6 +45,7 @@ type Config struct {
// Service gateway — additional upstream services proxied through doot's auth layer
PlaygroundURL string // URL of playground demo service (optional)
+ ScoutURL string // URL of scout listing feed service (optional)
}
// Load reads configuration from environment variables
@@ -87,6 +88,7 @@ func Load() (*Config, error) {
// Service gateway
PlaygroundURL: os.Getenv("PLAYGROUND_URL"),
+ ScoutURL: os.Getenv("SCOUT_URL"),
}
// Validate required fields