- from core_shared import ServiceSettings
- class RuntimeServiceSettings(ServiceSettings):
- service_name: str = "runtime-service"
- service_port: int = 8003
- database_url: str = "sqlite:///./runtime_service.db"
- workflow_service_url: str = "http://127.0.0.1:8002"
|