We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35d6951 commit 87fb181Copy full SHA for 87fb181
2 files changed
crates/crabctl/src/bin/main.rs
@@ -13,7 +13,7 @@ use crabctl::{
13
#[derive(Parser)]
14
#[command(name = "crabctl", about = "Manage a running crabllm gateway")]
15
struct Cli {
16
- /// Gateway URL (e.g. http://localhost:8080)
+ /// Gateway URL (e.g. http://localhost:5632)
17
#[arg(long)]
18
url: Option<String>,
19
crates/crabctl/src/config.rs
@@ -2,7 +2,7 @@ use crate::error::Error;
2
use serde::Deserialize;
3
use std::path::PathBuf;
4
5
-const DEFAULT_URL: &str = "http://localhost:8080";
+const DEFAULT_URL: &str = "http://localhost:5632";
6
7
#[derive(Deserialize, Default)]
8
struct FileConfig {
0 commit comments