2026-01-16 13:22:26 +08:00
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class GatewayConfig(BaseModel):
|
|
|
|
|
"""Configuration for the API Gateway."""
|
|
|
|
|
|
|
|
|
|
host: str = Field(default="0.0.0.0", description="Host to bind the gateway server")
|
2026-01-19 23:23:38 +08:00
|
|
|
port: int = Field(default=8001, description="Port to bind the gateway server")
|
2026-01-16 13:22:26 +08:00
|
|
|
cors_origins: list[str] = Field(default_factory=lambda: ["http://localhost:3000"], description="Allowed CORS origins")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_gateway_config: GatewayConfig | None = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_gateway_config() -> GatewayConfig:
|
|
|
|
|
"""Get gateway config, loading from environment if available."""
|
|
|
|
|
global _gateway_config
|
|
|
|
|
if _gateway_config is None:
|
|
|
|
|
cors_origins_str = os.getenv("CORS_ORIGINS", "http://localhost:3000")
|
|
|
|
|
_gateway_config = GatewayConfig(
|
|
|
|
|
host=os.getenv("GATEWAY_HOST", "0.0.0.0"),
|
2026-01-19 23:23:38 +08:00
|
|
|
port=int(os.getenv("GATEWAY_PORT", "8001")),
|
2026-01-16 13:22:26 +08:00
|
|
|
cors_origins=cors_origins_str.split(","),
|
|
|
|
|
)
|
|
|
|
|
return _gateway_config
|