diff --git a/src/main.rs b/src/main.rs index 32bfe72..63d4570 100644 --- a/src/main.rs +++ b/src/main.rs @@ -26,7 +26,7 @@ async fn main() { .route("/healthcheck", get(healthcheck)); // run it with hyper on localhost:3000 - axum::Server::bind(&"0.0.0.0:3000".parse().unwrap()) + axum::Server::bind(&"0.0.0.0:3003".parse().unwrap()) .serve(app.into_make_service()) .await .unwrap();