settings.py 232 B

12345678
  1. from core_shared import ServiceSettings
  2. class CodeRunnerServiceSettings(ServiceSettings):
  3. service_name: str = "code-runner-service"
  4. service_port: int = 8006
  5. python_bin: str = "python"
  6. max_timeout_seconds: int = 30