123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- """Everything regarding execution of the built app."""
- from __future__ import annotations
- import os
- from pathlib import Path
- from reflex import constants
- from reflex.config import get_config
- from reflex.utils import console, prerequisites, processes
- from reflex.utils.watch import AssetFolderWatch
- def start_watching_assets_folder(root):
- """Start watching assets folder.
- Args:
- root: root path of the project.
- """
- asset_watch = AssetFolderWatch(root)
- asset_watch.start()
- def run_process_and_launch_url(
- run_command: list[str],
- ):
- """Run the process and launch the URL.
- Args:
- run_command: The command to run.
- """
- process = processes.new_process(
- run_command,
- cwd=constants.WEB_DIR,
- )
- if process.stdout:
- for line in process.stdout:
- if "ready started server on" in line:
- url = line.split("url: ")[-1].strip()
- console.print(f"App running at: [bold green]{url}")
- else:
- console.debug(line)
- def run_frontend(
- root: Path,
- port: str,
- ):
- """Run the frontend.
- Args:
- root: The root path of the project.
- port: The port to run the frontend on.
- """
- # Start watching asset folder.
- start_watching_assets_folder(root)
- # Run the frontend in development mode.
- console.rule("[bold green]App Running")
- os.environ["PORT"] = get_config().frontend_port if port is None else port
- run_process_and_launch_url([prerequisites.get_package_manager(), "run", "dev"])
- def run_frontend_prod(
- root: Path,
- port: str,
- ):
- """Run the frontend.
- Args:
- root: The root path of the project (to keep same API as run_frontend).
- port: The port to run the frontend on.
- """
- # Set the port.
- os.environ["PORT"] = get_config().frontend_port if port is None else port
- # Run the frontend in production mode.
- console.rule("[bold green]App Running")
- run_process_and_launch_url([constants.NPM_PATH, "run", "prod"])
- def run_backend(
- app_name: str,
- host: str,
- port: int,
- loglevel: constants.LogLevel = constants.LogLevel.ERROR,
- ):
- """Run the backend.
- Args:
- host: The app host
- app_name: The app name.
- port: The app port
- loglevel: The log level.
- """
- processes.new_process(
- [
- "uvicorn",
- f"{app_name}:{constants.APP_VAR}.{constants.API_VAR}",
- "--host",
- host,
- "--port",
- str(port),
- "--log-level",
- loglevel,
- "--reload",
- "--reload-dir",
- app_name.split(".")[0],
- ],
- run=True,
- show_logs=True,
- )
- def run_backend_prod(
- app_name: str,
- host: str,
- port: int,
- loglevel: constants.LogLevel = constants.LogLevel.ERROR,
- ):
- """Run the backend.
- Args:
- host: The app host
- app_name: The app name.
- port: The app port
- loglevel: The log level.
- """
- num_workers = processes.get_num_workers()
- command = (
- [
- *constants.RUN_BACKEND_PROD_WINDOWS,
- "--host",
- host,
- "--port",
- str(port),
- f"{app_name}:{constants.APP_VAR}",
- ]
- if prerequisites.IS_WINDOWS
- else [
- *constants.RUN_BACKEND_PROD,
- "--bind",
- f"{host}:{port}",
- "--threads",
- str(num_workers),
- f"{app_name}:{constants.APP_VAR}()",
- ]
- )
- command += [
- "--log-level",
- loglevel.value,
- "--workers",
- str(num_workers),
- ]
- processes.new_process(command, run=True, show_logs=True)
|