settings.py 273 B

12345678
  1. from core_shared import ServiceSettings
  2. class RuntimeServiceSettings(ServiceSettings):
  3. service_name: str = "runtime-service"
  4. service_port: int = 8003
  5. database_url: str = "sqlite:///./runtime_service.db"
  6. workflow_service_url: str = "http://127.0.0.1:8002"