2026-05-06 17:29:44 -04:00
|
|
|
// Package config provides application configuration loaded from environment
|
|
|
|
|
// variables with sensible defaults for local development.
|
|
|
|
|
package config
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"os"
|
|
|
|
|
"strconv"
|
2026-05-08 19:58:06 -04:00
|
|
|
"time"
|
2026-05-06 17:29:44 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Config holds all application configuration.
|
|
|
|
|
type Config struct {
|
2026-05-08 19:58:06 -04:00
|
|
|
Port int
|
|
|
|
|
DatabaseURL string
|
|
|
|
|
CORSOrigin string
|
|
|
|
|
LogLevel string
|
|
|
|
|
Environment string
|
|
|
|
|
GatewayURL string
|
|
|
|
|
GatewayPollInterval time.Duration
|
2026-05-06 17:29:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Load reads configuration from environment variables, applying defaults where
|
|
|
|
|
// values are not set. All secrets come from the environment — nothing is hardcoded.
|
|
|
|
|
func Load() *Config {
|
|
|
|
|
return &Config{
|
2026-05-08 19:58:06 -04:00
|
|
|
Port: getEnvInt("PORT", 8080),
|
|
|
|
|
DatabaseURL: getEnv("DATABASE_URL", "postgres://controlcenter:controlcenter@localhost:5432/controlcenter?sslmode=disable"),
|
|
|
|
|
CORSOrigin: getEnv("CORS_ORIGIN", "*"),
|
|
|
|
|
LogLevel: getEnv("LOG_LEVEL", "info"),
|
|
|
|
|
Environment: getEnv("ENVIRONMENT", "development"),
|
|
|
|
|
GatewayURL: getEnv("GATEWAY_URL", "http://localhost:18789/api/agents"),
|
|
|
|
|
GatewayPollInterval: getEnvDuration("GATEWAY_POLL_INTERVAL", 5*time.Second),
|
2026-05-06 17:29:44 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func getEnv(key, fallback string) string {
|
|
|
|
|
if v := os.Getenv(key); v != "" {
|
|
|
|
|
return v
|
|
|
|
|
}
|
|
|
|
|
return fallback
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func getEnvInt(key string, fallback int) int {
|
|
|
|
|
if v := os.Getenv(key); v != "" {
|
|
|
|
|
if i, err := strconv.Atoi(v); err == nil {
|
|
|
|
|
return i
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return fallback
|
|
|
|
|
}
|
2026-05-08 19:58:06 -04:00
|
|
|
|
|
|
|
|
func getEnvDuration(key string, fallback time.Duration) time.Duration {
|
|
|
|
|
if v := os.Getenv(key); v != "" {
|
|
|
|
|
if d, err := time.ParseDuration(v); err == nil {
|
|
|
|
|
return d
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return fallback
|
|
|
|
|
}
|