123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- """Everything regarding execution of the built app."""
- from __future__ import annotations
- import os
- import platform
- import subprocess
- from pathlib import Path
- from typing import TYPE_CHECKING
- import uvicorn
- from pynecone import constants
- from pynecone.config import get_config
- from pynecone.utils import console, prerequisites, processes
- from pynecone.utils.build import export_app, setup_backend, setup_frontend
- from pynecone.utils.watch import AssetFolderWatch
- if TYPE_CHECKING:
- from pynecone.app import App
- 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_frontend(app: App, root: Path, port: str):
- """Run the frontend.
- Args:
- app: The app.
- root: root path of the project.
- port: port of the app.
- """
- # validate bun version
- prerequisites.validate_and_install_bun(initialize=False)
- # Set up the frontend.
- setup_frontend(root)
- # start watching asset folder
- start_watching_assets_folder(root)
- # Compile the frontend.
- app.compile(force_compile=True)
- # Run the frontend in development mode.
- console.rule("[bold green]App Running")
- os.environ["PORT"] = get_config().port if port is None else port
- # Run the frontend in development mode.
- subprocess.Popen(
- [prerequisites.get_package_manager(), "run", "dev"],
- cwd=constants.WEB_DIR,
- env=os.environ,
- )
- def run_frontend_prod(app: App, root: Path, port: str):
- """Run the frontend.
- Args:
- app: The app.
- root: root path of the project.
- port: port of the app.
- """
- # Set up the frontend.
- setup_frontend(root)
- # Export the app.
- export_app(app)
- # Set the port.
- os.environ["PORT"] = get_config().port if port is None else port
- # Run the frontend in production mode.
- subprocess.Popen(
- [prerequisites.get_package_manager(), "run", "prod"],
- cwd=constants.WEB_DIR,
- env=os.environ,
- )
- def run_backend(
- app_name: str, port: int, loglevel: constants.LogLevel = constants.LogLevel.ERROR
- ):
- """Run the backend.
- Args:
- app_name: The app name.
- port: The app port
- loglevel: The log level.
- """
- setup_backend()
- uvicorn.run(
- f"{app_name}:{constants.APP_VAR}.{constants.API_VAR}",
- host=constants.BACKEND_HOST,
- port=port,
- log_level=loglevel,
- reload=True,
- )
- def run_backend_prod(
- app_name: str, port: int, loglevel: constants.LogLevel = constants.LogLevel.ERROR
- ):
- """Run the backend.
- Args:
- app_name: The app name.
- port: The app port
- loglevel: The log level.
- """
- setup_backend()
- num_workers = processes.get_num_workers()
- command = (
- [
- *constants.RUN_BACKEND_PROD_WINDOWS,
- "--host",
- "0.0.0.0",
- "--port",
- str(port),
- f"{app_name}:{constants.APP_VAR}",
- ]
- if platform.system() == "Windows"
- else [
- *constants.RUN_BACKEND_PROD,
- "--bind",
- f"0.0.0.0:{port}",
- "--threads",
- str(num_workers),
- f"{app_name}:{constants.APP_VAR}()",
- ]
- )
- command += [
- "--log-level",
- loglevel.value,
- "--workers",
- str(num_workers),
- ]
- subprocess.run(command)
|