Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion reflex/utils/exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,9 @@ def notify_frontend(url: str, backend_present: bool):

def notify_backend():
"""Output a string notifying where the backend is running."""
config = get_config()
console.print(
f"Backend running at: [bold green]http://0.0.0.0:{get_config().backend_port}[/bold green]"
f"Backend running at: [bold green]http://{config.backend_host}:{config.backend_port}[/bold green]"
)


Expand Down