From b3ed2c56b041fe2c0cc0458ef9030c243211f217 Mon Sep 17 00:00:00 2001 From: Diana Carvalho Date: Thu, 12 Dec 2024 17:36:29 +0000 Subject: [PATCH] fix: Change tycho url to point to dev db --- examples/explorer/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/explorer/main.rs b/examples/explorer/main.rs index af0bad36..f190df2d 100644 --- a/examples/explorer/main.rs +++ b/examples/explorer/main.rs @@ -34,7 +34,7 @@ async fn main() { let cli = Cli::parse(); let tycho_url = - env::var("TYCHO_URL").unwrap_or_else(|_| "tycho-beta.propellerheads.xyz".to_string()); + env::var("TYCHO_URL").unwrap_or_else(|_| "tycho-dev.propellerheads.xyz".to_string()); let tycho_api_key: String = env::var("TYCHO_API_KEY").unwrap_or_else(|_| "sampletoken".to_string());