diff --git a/reflex/config.py b/reflex/config.py index 88230cefe..1d952f4f0 100644 --- a/reflex/config.py +++ b/reflex/config.py @@ -652,9 +652,9 @@ class Config(Base): frontend_packages: List[str] = [] # The hosting service backend URL. - cp_backend_url: str = Hosting.CP_BACKEND_URL + cp_backend_url: str = Hosting.HOSTING_SERVICE # The hosting service frontend URL. - cp_web_url: str = Hosting.CP_WEB_URL + cp_web_url: str = Hosting.HOSTING_SERVICE_UI # The worker class used in production mode gunicorn_worker_class: str = "uvicorn.workers.UvicornH11Worker" diff --git a/reflex/reflex.py b/reflex/reflex.py index 9aaee0514..d810158f5 100644 --- a/reflex/reflex.py +++ b/reflex/reflex.py @@ -487,7 +487,7 @@ def deploy( ): """Deploy the app to the Reflex hosting service.""" from reflex_cli.v2 import cli as hosting_cli - from reflex_cli.v2.utils import dependency + from reflex_cli.utils import dependency from reflex.utils import export as export_utils from reflex.utils import prerequisites