add http
Some checks failed
Run Check Script / check (pull_request) Failing after 50s

This commit is contained in:
Ian Letourneau 2025-09-09 22:24:36 -04:00
parent 7bc083701e
commit 8424778871
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ async fn main() {
name: "harmony-example-tryrust".to_string(), name: "harmony-example-tryrust".to_string(),
project_root: PathBuf::from("./tryrust.org"), project_root: PathBuf::from("./tryrust.org"),
framework: Some(RustWebFramework::Leptos), framework: Some(RustWebFramework::Leptos),
service_port: 3000, service_port: 8080,
}); });
let discord_receiver = DiscordWebhook { let discord_receiver = DiscordWebhook {

View File

@ -210,7 +210,7 @@ impl<
}; };
Ok(InstallationOutcome::success_with_details(vec![format!( Ok(InstallationOutcome::success_with_details(vec![format!(
"{}: {domain}", "{}: http://{domain}",
self.application.name() self.application.name()
)])) )]))
} }