"""Reflex CLI to create, run, and deploy apps.""" import os import signal from pathlib import Path import httpx import typer from alembic.util.exc import CommandError from reflex import constants, model from reflex.config import get_config from reflex.utils import build, console, exec, prerequisites, processes, telemetry # Create the app. cli = typer.Typer(add_completion=False) def version(value: bool): """Get the Reflex version. Args: value: Whether the version flag was passed. Raises: typer.Exit: If the version flag was passed. """ if value: console.print(constants.VERSION) raise typer.Exit() @cli.callback() def main( version: bool = typer.Option( None, "-v", "--version", callback=version, help="Get the Reflex version.", is_eager=True, ), ): """Reflex CLI to create, run, and deploy apps.""" pass @cli.command() def init( name: str = typer.Option( None, metavar="APP_NAME", help="The name of the app to be initialized." ), template: constants.Template = typer.Option( constants.Template.DEFAULT, help="The template to initialize the app with." ), loglevel: constants.LogLevel = typer.Option( constants.LogLevel.INFO, help="The log level to use." ), ): """Initialize a new Reflex app in the current directory.""" # Set the log level. console.set_log_level(loglevel) # Get the app name. app_name = prerequisites.get_default_app_name() if name is None else name console.rule(f"[bold]Initializing {app_name}") # Set up the web project. prerequisites.initialize_frontend_dependencies() # Migrate Pynecone projects to Reflex. prerequisites.migrate_to_reflex() # Set up the app directory, only if the config doesn't exist. config = get_config() if not os.path.exists(constants.CONFIG_FILE): prerequisites.create_config(app_name) prerequisites.initialize_app_directory(app_name, template) build.set_reflex_project_hash() telemetry.send("init", config.telemetry_enabled) else: telemetry.send("reinit", config.telemetry_enabled) # Initialize the .gitignore. prerequisites.initialize_gitignore() # Finish initializing the app. console.success(f"Initialized {app_name}") @cli.command() def run( env: constants.Env = typer.Option( get_config().env, help="The environment to run the app in." ), frontend: bool = typer.Option( False, "--frontend-only", help="Execute only frontend." ), backend: bool = typer.Option(False, "--backend-only", help="Execute only backend."), frontend_port: str = typer.Option(None, help="Specify a different frontend port."), backend_port: str = typer.Option(None, help="Specify a different backend port."), backend_host: str = typer.Option(None, help="Specify the backend host."), loglevel: constants.LogLevel = typer.Option( constants.LogLevel.INFO, help="The log level to use." ), ): """Run the app in the current directory.""" # Set the log level. console.set_log_level(loglevel) # Set ports as os env variables to take precedence over config and # .env variables(if override_os_envs flag in config is set to False). build.set_os_env( frontend_port=frontend_port, backend_port=backend_port, backend_host=backend_host, ) # Get the ports from the config. config = get_config() frontend_port = config.frontend_port if frontend_port is None else frontend_port backend_port = config.backend_port if backend_port is None else backend_port backend_host = config.backend_host if backend_host is None else backend_host # If no --frontend-only and no --backend-only, then turn on frontend and backend both if not frontend and not backend: frontend = True backend = True # Check that the app is initialized. prerequisites.check_initialized(frontend=frontend) # If something is running on the ports, ask the user if they want to kill or change it. if frontend and processes.is_process_on_port(frontend_port): frontend_port = processes.change_or_terminate_port(frontend_port, "frontend") if backend and processes.is_process_on_port(backend_port): backend_port = processes.change_or_terminate_port(backend_port, "backend") # Get the app module. console.rule("[bold]Starting Reflex App") app = prerequisites.get_app() # Check the admin dashboard settings. prerequisites.check_admin_settings() # Warn if schema is not up to date. prerequisites.check_schema_up_to_date() # Get the frontend and backend commands, based on the environment. setup_frontend = frontend_cmd = backend_cmd = None if env == constants.Env.DEV: setup_frontend, frontend_cmd, backend_cmd = ( build.setup_frontend, exec.run_frontend, exec.run_backend, ) if env == constants.Env.PROD: setup_frontend, frontend_cmd, backend_cmd = ( build.setup_frontend_prod, exec.run_frontend_prod, exec.run_backend_prod, ) assert setup_frontend and frontend_cmd and backend_cmd, "Invalid env" # Post a telemetry event. telemetry.send(f"run-{env.value}", config.telemetry_enabled) # Display custom message when there is a keyboard interrupt. signal.signal(signal.SIGINT, processes.catch_keyboard_interrupt) # Run the frontend and backend together. commands = [] if frontend: setup_frontend(Path.cwd()) commands.append((frontend_cmd, Path.cwd(), frontend_port)) if backend: commands.append((backend_cmd, app.__name__, backend_host, backend_port)) processes.run_concurrently(*commands) @cli.command() def deploy(dry_run: bool = typer.Option(False, help="Whether to run a dry run.")): """Deploy the app to the Reflex hosting service.""" # Get the app config. config = get_config() # Check if the deploy url is set. if config.rxdeploy_url is None: typer.echo("This feature is coming soon!") return # Compile the app in production mode. typer.echo("Compiling production app") export() # Exit early if this is a dry run. if dry_run: return # Deploy the app. data = {"userId": config.username, "projectId": config.app_name} original_response = httpx.get(config.rxdeploy_url, params=data) response = original_response.json() frontend = response["frontend_resources_url"] backend = response["backend_resources_url"] # Upload the frontend and backend. with open(constants.FRONTEND_ZIP, "rb") as f: httpx.put(frontend, data=f) # type: ignore with open(constants.BACKEND_ZIP, "rb") as f: httpx.put(backend, data=f) # type: ignore @cli.command() def export( zipping: bool = typer.Option( True, "--no-zip", help="Disable zip for backend and frontend exports." ), frontend: bool = typer.Option( True, "--backend-only", help="Export only backend.", show_default=False ), backend: bool = typer.Option( True, "--frontend-only", help="Export only frontend.", show_default=False ), loglevel: constants.LogLevel = typer.Option( constants.LogLevel.INFO, help="The log level to use." ), ): """Export the app to a zip file.""" # Set the log level. console.set_log_level(loglevel) # Check that the app is initialized. prerequisites.check_initialized(frontend=frontend) # Compile the app in production mode and export it. console.rule("[bold]Compiling production app and preparing for export.") if frontend: # Ensure module can be imported and app.compile() is called. prerequisites.get_app() # Set up .web directory and install frontend dependencies. build.setup_frontend(Path.cwd()) # Export the app. config = get_config() build.export( backend=backend, frontend=frontend, zip=zipping, deploy_url=config.deploy_url, ) # Post a telemetry event. telemetry.send("export", config.telemetry_enabled) if zipping: console.log( """Backend & Frontend compiled. See [green bold]backend.zip[/green bold] and [green bold]frontend.zip[/green bold].""" ) else: console.log( """Backend & Frontend compiled. See [green bold]app[/green bold] and [green bold].web/_static[/green bold] directories.""" ) db_cli = typer.Typer() @db_cli.command(name="init") def db_init(): """Create database schema and migration configuration.""" # Check the database url. if get_config().db_url is None: console.error("db_url is not configured, cannot initialize.") return # Check the alembic config. if Path(constants.ALEMBIC_CONFIG).exists(): console.error( "Database is already initialized. Use " "[bold]reflex db makemigrations[/bold] to create schema change " "scripts and [bold]reflex db migrate[/bold] to apply migrations " "to a new or existing database.", ) return # Initialize the database. prerequisites.get_app() model.Model.alembic_init() model.Model.migrate(autogenerate=True) @db_cli.command() def migrate(): """Create or update database schema from migration scripts.""" prerequisites.get_app() if not prerequisites.check_db_initialized(): return model.Model.migrate() prerequisites.check_schema_up_to_date() @db_cli.command() def makemigrations( message: str = typer.Option( None, help="Human readable identifier for the generated revision." ), ): """Create autogenerated alembic migration scripts.""" prerequisites.get_app() if not prerequisites.check_db_initialized(): return with model.Model.get_db_engine().connect() as connection: try: model.Model.alembic_autogenerate(connection=connection, message=message) except CommandError as command_error: if "Target database is not up to date." not in str(command_error): raise console.error( f"{command_error} Run [bold]reflex db migrate[/bold] to update database." ) cli.add_typer(db_cli, name="db", help="Subcommands for managing the database schema.") if __name__ == "__main__": cli()