Skip to content

Commit be78cf9

Browse files
committed
Default to CDN version of explorer
1 parent 8b4b174 commit be78cf9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/bin/am/commands.rs

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ pub enum SubCommands {
4343
System(system::Arguments),
4444

4545
/// Open up the existing Explorer
46+
#[clap(alias = "explorer")]
4647
Explore(explore::Arguments),
4748

4849
/// Create a new `am.toml` file interactively with sensible defaults

src/bin/am/commands/explore.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub struct Arguments {
1010
prometheus_endpoint: Option<Url>,
1111

1212
/// Which endpoint to open in the browser
13-
#[clap(long, env, default_value = "http://localhost:6789/explorer")]
13+
#[clap(long, env, default_value = "https://explorer.autometrics.dev/")]
1414
explorer_endpoint: Url,
1515
}
1616

0 commit comments

Comments
 (0)