port changed

This commit is contained in:
Martin Brodbeck 2023-09-26 12:49:33 +02:00
parent 2e8d3d2701
commit 320cd84774

View file

@ -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();