Skip to content

Commit

Permalink
fix: change port for local dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ajaxbits committed Apr 17, 2024
1 parent 164d500 commit bf91f61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ async fn main() -> color_eyre::Result<()> {
.route("/:path_type/*val", get(feed::serve_feed))
.route("/ep/:feed_id/:ep_id", get(audio::return_audio));

let addr = SocketAddr::from_str("[::]:8080")?;
let addr = SocketAddr::from_str("[::]:8888")?;
axum::Server::bind(&addr)
.serve(app.into_make_service())
.await?;
Expand Down

0 comments on commit bf91f61

Please sign in to comment.