crablog/src/main.rs

30 lines
702 B
Rust
Raw Normal View History

2020-10-22 00:17:52 +02:00
mod db;
mod routes;
#[macro_use]
extern crate diesel;
extern crate chrono;
extern crate serde_derive;
extern crate tera;
use actix_files as fs;
use actix_web::{middleware, App, HttpServer};
use std::string::String;
2020-10-22 00:17:52 +02:00
#[actix_web::main]
async fn main() -> std::io::Result<()> {
HttpServer::new(|| {
App::new()
//.wrap(middleware::NormalizePath::default())
2020-10-22 00:17:52 +02:00
.service(routes::root)
.service(routes::blog)
.service(routes::blog_permalink)
.service(routes::blog_submit)
.service(routes::blog_new_post)
2020-10-22 00:17:52 +02:00
.service(fs::Files::new("/static", "./static/"))
})
.bind("localhost:8000")?
.run()
.await
}