Start the backend in a new thread and dev frontend as a separate process. Returns: self
(self)
| 416 | self.frontend_output_thread.start() |
| 417 | |
| 418 | def start(self) -> Self: |
| 419 | """Start the backend in a new thread and dev frontend as a separate process. |
| 420 | |
| 421 | Returns: |
| 422 | self |
| 423 | """ |
| 424 | self._initialize_app() |
| 425 | self._start_backend() |
| 426 | self._start_frontend() |
| 427 | self._wait_frontend() |
| 428 | return self |
| 429 | |
| 430 | @staticmethod |
| 431 | def get_app_global_source(key: str, value: Any): |
no test coverage detected