MCPcopy
hub / github.com/reflex-dev/reflex / start

Method start

reflex/testing.py:418–428  ·  view source on GitHub ↗

Start the backend in a new thread and dev frontend as a separate process. Returns: self

(self)

Source from the content-addressed store, hash-verified

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):

Calls 4

_initialize_appMethod · 0.95
_start_backendMethod · 0.95
_start_frontendMethod · 0.95
_wait_frontendMethod · 0.95

Tested by

no test coverage detected