Fix: CLI Social Links (#7601)
* Update social CLI links * Fix star emoji * [autofix.ci] apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
050230cad1
commit
b39fdc5b7d
3 changed files with 24 additions and 25 deletions
|
|
@ -44,17 +44,17 @@ Open a new Terminal, and type `uv run langflow run`.
|
|||
The service will start, and you will may notice a dialog in the lower right indicating there is a port available to connect to. However, the service will not be ready until you see the welcome banner:
|
||||
|
||||
```
|
||||
╭───────────────────────────────────────────────────────────────────╮
|
||||
│ Welcome to Langflow │
|
||||
│ │
|
||||
│ │
|
||||
│ Collaborate and contribute: 🌟 GitHub Repo • 💬 Join Discord │
|
||||
│ │
|
||||
│ We collect anonymous usage data to improve Langflow. │
|
||||
│ To opt out, set: DO_NOT_TRACK=true in your environment. │
|
||||
│ │
|
||||
│ 🟢 Open Langflow → http://127.0.0.1:7860 │
|
||||
╰───────────────────────────────────────────────────────────────────╯
|
||||
╭───────────────────────────────────────────────────────────────────────╮
|
||||
│ Welcome to Langflow │
|
||||
│ │
|
||||
│ 🌟 GitHub: Star for updates → https://github.com/langflow-ai/langflow │
|
||||
│ 💬 Discord: Join for support → https://discord.com/invite/EqksyE2EX9 │
|
||||
│ │
|
||||
│ We collect anonymous usage data to improve Langflow. │
|
||||
│ To opt out, set: DO_NOT_TRACK=true in your environment. │
|
||||
│ │
|
||||
│ 🟢 Open Langflow → http://127.0.0.1:7860 │
|
||||
╰───────────────────────────────────────────────────────────────────────╯
|
||||
```
|
||||
|
||||
At this point you can connect to the service via the port, or if the dialog is gone you can find the "Forwarded Address" on the "Ports" tab (which is next the "Terminal" tab). If there is no port forwarded, you can click the "Forward a Port" button on the "Ports" tab, and forward `7860`.
|
||||
|
|
@ -68,17 +68,17 @@ This will set up the development environment by installing backend and frontend
|
|||
Once the application is running, the command output should look similar to:
|
||||
|
||||
```
|
||||
╭───────────────────────────────────────────────────────────────────╮
|
||||
│ Welcome to Langflow │
|
||||
│ │
|
||||
│ │
|
||||
│ Collaborate and contribute: 🌟 GitHub Repo • 💬 Join Discord │
|
||||
│ │
|
||||
│ We collect anonymous usage data to improve Langflow. │
|
||||
│ To opt out, set: DO_NOT_TRACK=true in your environment. │
|
||||
│ │
|
||||
│ 🟢 Open Langflow → http://127.0.0.1:7860 │
|
||||
╰───────────────────────────────────────────────────────────────────╯
|
||||
╭───────────────────────────────────────────────────────────────────────╮
|
||||
│ Welcome to Langflow │
|
||||
│ │
|
||||
│ 🌟 GitHub: Star for updates → https://github.com/langflow-ai/langflow │
|
||||
│ 💬 Discord: Join for support → https://discord.com/invite/EqksyE2EX9 │
|
||||
│ │
|
||||
│ We collect anonymous usage data to improve Langflow. │
|
||||
│ To opt out, set: DO_NOT_TRACK=true in your environment. │
|
||||
│ │
|
||||
│ 🟢 Open Langflow → http://127.0.0.1:7860 │
|
||||
╰───────────────────────────────────────────────────────────────────────╯
|
||||
```
|
||||
|
||||
At this point, validate you can access the UI by opening the URL shown.
|
||||
|
|
|
|||
|
|
@ -401,9 +401,8 @@ def print_banner(host: str, port: int, protocol: str) -> None:
|
|||
|
||||
title = f"[bold]Welcome to {styled_package_name}[/bold]\n"
|
||||
info_text = (
|
||||
"Collaborate and contribute: "
|
||||
":star2:[bold][link=https://github.com/langflow-ai/langflow]GitHub Repo[/link][/bold] • "
|
||||
":speech_balloon:[bold][link=https://discord.com/invite/EqksyE2EX9]Join Discord[/link][/bold]"
|
||||
":star2: GitHub: Star for updates → https://github.com/langflow-ai/langflow\n"
|
||||
":speech_balloon: Discord: Join for support → https://discord.com/invite/EqksyE2EX9"
|
||||
)
|
||||
telemetry_text = (
|
||||
"We collect anonymous usage data to improve Langflow.\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue