1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-27 02:37:42 +02:00

add README examples/template_tera

This commit is contained in:
ami44
2017-12-30 16:10:29 +01:00
parent 12345004dd
commit 8e580ef7b9
3 changed files with 26 additions and 3 deletions

View File

@ -4,6 +4,8 @@ extern crate env_logger;
#[macro_use]
extern crate tera;
use actix_web::*;
use actix::Arbiter;
use actix::actors::signal::{ProcessSignals, Subscribe};
struct State {
template: tera::Tera, // <- store tera template in application state
@ -30,7 +32,7 @@ fn main() {
let _ = env_logger::init();
let sys = actix::System::new("tera-example");
HttpServer::new(|| {
let addr = HttpServer::new(|| {
let tera = compile_templates!(concat!(env!("CARGO_MANIFEST_DIR"), "/templates/**/*"));
Application::with_state(State{template: tera})
@ -40,6 +42,10 @@ fn main() {
.bind("127.0.0.1:8080").unwrap()
.start();
// Subscribe to unix signals
let signals = Arbiter::system_registry().get::<ProcessSignals>();
signals.send(Subscribe(addr.subscriber()));
println!("Started http server: 127.0.0.1:8080");
let _ = sys.run();
}