Krys4lide/crates/app/src/main.rs

31 lines
982 B
Rust
Raw Normal View History

use ::app::get_router;
use listenfd::ListenFd;
2024-07-25 09:21:17 +02:00
use std::env;
use std::path::Path;
use tokio::net::TcpListener;
#[tokio::main]
async fn main() {
let manifest_dir = env::var("CARGO_MANIFEST_DIR").unwrap();
let assets_path = Path::new(&manifest_dir).join("assets");
let router = get_router(assets_path.as_path());
let mut listenfd = ListenFd::from_env();
let listener = match listenfd.take_tcp_listener(0).unwrap() {
// if we are given a tcp listener on listen fd 0, we use that one
Some(listener) => {
listener.set_nonblocking(true).unwrap();
TcpListener::from_std(listener).unwrap()
}
// otherwise fall back to local listening
None => TcpListener::bind("localhost:3000").await.unwrap(),
};
println!("Listening on: http://{}", listener.local_addr().unwrap());
// Run the server with the router
axum::serve(listener, router.into_make_service())
2024-08-08 15:01:28 +02:00
.await
.unwrap();
}