zola/src/main.rs

68 lines
1.8 KiB
Rust
Raw Normal View History

2017-02-23 08:34:57 +00:00
#[macro_use]
extern crate clap;
extern crate chrono;
2017-03-25 06:52:51 +00:00
extern crate term_painter;
2017-03-06 10:35:56 +00:00
extern crate staticfile;
extern crate iron;
extern crate mount;
extern crate notify;
extern crate ws;
2017-07-01 07:47:41 +00:00
extern crate site;
#[macro_use]
extern crate errors;
extern crate content;
extern crate front_matter;
extern crate utils;
use std::time::Instant;
2017-03-25 06:52:51 +00:00
2016-12-06 05:51:33 +00:00
mod cmd;
2017-03-25 06:52:51 +00:00
mod console;
mod rebuild;
2017-07-15 04:24:31 +00:00
mod cli;
2016-12-06 06:55:17 +00:00
2016-12-06 05:51:33 +00:00
fn main() {
2017-07-15 04:24:31 +00:00
let matches = cli::build_cli().get_matches();
2016-12-06 05:51:33 +00:00
let config_file = matches.value_of("config").unwrap_or("config.toml");
2016-12-06 05:51:33 +00:00
match matches.subcommand() {
2016-12-19 07:58:03 +00:00
("init", Some(matches)) => {
2016-12-06 05:51:33 +00:00
match cmd::create_new_project(matches.value_of("name").unwrap()) {
2017-03-25 06:52:51 +00:00
Ok(()) => console::success("Project created"),
Err(e) => {
console::unravel_errors("Failed to create the project", &e);
::std::process::exit(1);
},
2016-12-06 08:27:03 +00:00
};
},
("build", Some(_)) => {
2017-03-25 06:52:51 +00:00
console::info("Building site...");
let start = Instant::now();
2017-03-25 06:59:12 +00:00
match cmd::build(config_file) {
Ok(()) => console::report_elapsed_time(start),
Err(e) => {
console::unravel_errors("Failed to build the site", &e);
::std::process::exit(1);
},
2016-12-06 05:51:33 +00:00
};
},
("serve", Some(matches)) => {
let interface = matches.value_of("interface").unwrap_or("127.0.0.1");
let port = matches.value_of("port").unwrap_or("1111");
2017-03-25 06:52:51 +00:00
console::info("Building site...");
2017-03-25 06:59:12 +00:00
match cmd::serve(interface, port, config_file) {
2017-03-06 10:35:56 +00:00
Ok(()) => (),
Err(e) => {
2017-05-20 15:00:41 +00:00
console::unravel_errors("", &e);
::std::process::exit(1);
},
};
},
2016-12-06 05:51:33 +00:00
_ => unreachable!(),
}
}