docs: start work on default development configuration

This commit is contained in:
Paul Makles
2024-09-09 12:49:38 +01:00
parent 2433fa661a
commit 0bbb9e7072
10 changed files with 233 additions and 6 deletions

View File

@@ -69,7 +69,7 @@ async fn main() -> Result<(), std::io::Error> {
.with_state(db);
// Configure TCP listener and bind
let address = SocketAddr::from((Ipv4Addr::UNSPECIFIED, 3000));
let address = SocketAddr::from((Ipv4Addr::UNSPECIFIED, 14704));
let listener = TcpListener::bind(&address).await?;
axum::serve(listener, app.into_make_service()).await
}