Skip to content

Commit 87fb181

Browse files
committed
chore(crabctl): default URL to http://localhost:5632
1 parent 35d6951 commit 87fb181

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

crates/crabctl/src/bin/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use crabctl::{
1313
#[derive(Parser)]
1414
#[command(name = "crabctl", about = "Manage a running crabllm gateway")]
1515
struct Cli {
16-
/// Gateway URL (e.g. http://localhost:8080)
16+
/// Gateway URL (e.g. http://localhost:5632)
1717
#[arg(long)]
1818
url: Option<String>,
1919

crates/crabctl/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use crate::error::Error;
22
use serde::Deserialize;
33
use std::path::PathBuf;
44

5-
const DEFAULT_URL: &str = "http://localhost:8080";
5+
const DEFAULT_URL: &str = "http://localhost:5632";
66

77
#[derive(Deserialize, Default)]
88
struct FileConfig {

0 commit comments

Comments
 (0)