Skip to content

Commit

Permalink
fix: port 8080 for angular-todomvc example
Browse files Browse the repository at this point in the history
  • Loading branch information
Totodore committed Dec 15, 2023
1 parent d563248 commit b1794ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/angular-todomvc/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
.layer(layer),
);

let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap();
let listener = tokio::net::TcpListener::bind("0.0.0.0:8080").await.unwrap();
axum::serve(listener, app).await.unwrap();

Ok(())
Expand Down

0 comments on commit b1794ef

Please sign in to comment.