little fixes friend

This commit is contained in:
simon 2024-12-04 14:22:59 -08:00
parent 2a1d3cc77e
commit 5d95513a08
2 changed files with 3 additions and 3 deletions

View File

@ -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"

View File

@ -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