350 lines
10 KiB
Python
350 lines
10 KiB
Python
"""Reflex CLI to create, run, and deploy apps."""
|
|
|
|
import atexit
|
|
import os
|
|
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)
|
|
|
|
# Get the config.
|
|
config = get_config()
|
|
|
|
|
|
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.Reflex.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 initialize."
|
|
),
|
|
template: constants.Templates.Kind = typer.Option(
|
|
constants.Templates.Kind.DEFAULT,
|
|
help="The template to initialize the app with.",
|
|
),
|
|
loglevel: constants.LogLevel = typer.Option(
|
|
config.loglevel, help="The log level to use."
|
|
),
|
|
):
|
|
"""Initialize a new Reflex app in the current directory."""
|
|
# Set the log level.
|
|
console.set_log_level(loglevel)
|
|
|
|
# Show system info
|
|
exec.output_system_info()
|
|
|
|
# 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.
|
|
if not os.path.exists(constants.Config.FILE):
|
|
prerequisites.create_config(app_name)
|
|
prerequisites.initialize_app_directory(app_name, template)
|
|
telemetry.send("init")
|
|
else:
|
|
telemetry.send("reinit")
|
|
|
|
# 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(
|
|
constants.Env.DEV, 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(
|
|
config.frontend_port, help="Specify a different frontend port."
|
|
),
|
|
backend_port: str = typer.Option(
|
|
config.backend_port, help="Specify a different backend port."
|
|
),
|
|
backend_host: str = typer.Option(
|
|
config.backend_host, help="Specify the backend host."
|
|
),
|
|
loglevel: constants.LogLevel = typer.Option(
|
|
config.loglevel, help="The log level to use."
|
|
),
|
|
):
|
|
"""Run the app in the current directory."""
|
|
# Set the log level.
|
|
console.set_log_level(loglevel)
|
|
|
|
# Show system info
|
|
exec.output_system_info()
|
|
|
|
# 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
|
|
|
|
if not frontend and backend:
|
|
_skip_compile()
|
|
|
|
# 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")
|
|
|
|
console.rule("[bold]Starting Reflex App")
|
|
|
|
if frontend:
|
|
# Get the app module.
|
|
prerequisites.get_app()
|
|
|
|
# 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}")
|
|
|
|
# Display custom message when there is a keyboard interrupt.
|
|
atexit.register(processes.atexit_handler)
|
|
|
|
# Run the frontend and backend together.
|
|
commands = []
|
|
|
|
# Run the frontend on a separate thread.
|
|
if frontend:
|
|
setup_frontend(Path.cwd())
|
|
commands.append((frontend_cmd, Path.cwd(), frontend_port))
|
|
|
|
# In prod mode, run the backend on a separate thread.
|
|
if backend and env == constants.Env.PROD:
|
|
commands.append((backend_cmd, backend_host, backend_port))
|
|
|
|
# Start the frontend and backend.
|
|
with processes.run_concurrently_context(*commands):
|
|
# In dev mode, run the backend on the main thread.
|
|
if backend and env == constants.Env.DEV:
|
|
backend_cmd(backend_host, int(backend_port))
|
|
|
|
|
|
@cli.command()
|
|
def deploy(
|
|
dry_run: bool = typer.Option(False, help="Whether to run a dry run."),
|
|
loglevel: constants.LogLevel = typer.Option(
|
|
console._LOG_LEVEL, help="The log level to use."
|
|
),
|
|
):
|
|
"""Deploy the app to the Reflex hosting service."""
|
|
# Set the log level.
|
|
console.set_log_level(loglevel)
|
|
|
|
# Show system info
|
|
exec.output_system_info()
|
|
|
|
# Check if the deploy url is set.
|
|
if config.rxdeploy_url is None:
|
|
console.info("This feature is coming soon!")
|
|
return
|
|
|
|
# Compile the app in production mode.
|
|
export(loglevel=loglevel)
|
|
|
|
# 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.ComponentName.FRONTEND.zip(), "rb") as f:
|
|
httpx.put(frontend, data=f) # type: ignore
|
|
|
|
with open(constants.ComponentName.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(
|
|
console._LOG_LEVEL, help="The log level to use."
|
|
),
|
|
):
|
|
"""Export the app to a zip file."""
|
|
# Set the log level.
|
|
console.set_log_level(loglevel)
|
|
|
|
# Show system info
|
|
exec.output_system_info()
|
|
|
|
# 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.
|
|
build.export(
|
|
backend=backend,
|
|
frontend=frontend,
|
|
zip=zipping,
|
|
deploy_url=config.deploy_url,
|
|
)
|
|
|
|
# Post a telemetry event.
|
|
telemetry.send("export")
|
|
|
|
|
|
db_cli = typer.Typer()
|
|
|
|
|
|
def _skip_compile():
|
|
"""Skip the compile step."""
|
|
os.environ[constants.SKIP_COMPILE_ENV_VAR] = "yes"
|
|
|
|
|
|
@db_cli.command(name="init")
|
|
def db_init():
|
|
"""Create database schema and migration configuration."""
|
|
# Check the database url.
|
|
if 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.
|
|
_skip_compile()
|
|
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."""
|
|
_skip_compile()
|
|
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."""
|
|
_skip_compile()
|
|
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()
|