use tide::{http::StatusCode, Request, Response}; mod settings; use settings::Settings; #[async_std::main] async fn main() -> tide::Result<()> { let sett = Settings::new().unwrap(); let app = app_setup().await; app.listen(format!("{}:{}", sett.address, sett.port)) .await?; Ok(()) } async fn app_setup() -> tide::Server<()> { let mut app = tide::new(); app.at("/").get(home); return app; } async fn home(_req: Request<()>) -> tide::Result { let mut res = Response::new(StatusCode::Ok); res.set_body("
The code for the site is here.
And the latest x86_64 Linux build is here.
There is also an ansible role for installation here.
"); res.append_header("Content-Type", "text/html; charset=UTF-8"); Ok(res) } #[cfg(test)] mod server_app { use super::*; use tide_testing::TideTestingExt; #[async_std::test] async fn home_page_available() { let app = app_setup().await; let response = app.get("/").await.unwrap(); assert_eq!(response.status(), StatusCode::Ok); } }