add ci
Some checks failed
CI/CD Pipeline / test (push) Successful in 4m10s
CI/CD Pipeline / deploy (push) Failing after 1m30s

This commit is contained in:
2025-07-19 15:43:01 +02:00
parent 673a0967b2
commit ba0c459843
2 changed files with 61 additions and 2 deletions

View File

@@ -25,9 +25,9 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
.route("/new", get(new))
.with_state(state);
println!("Streaming server running on http://localhost:3000");
println!("Streaming server running on http://localhost:3029");
let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await?;
let listener = tokio::net::TcpListener::bind("0.0.0.0:3029").await?;
axum::serve(listener, app).await?;
Ok(())