Add dev mode

pull/8/head
Tristan Daniël Maat 2022-08-16 23:51:07 +01:00
parent d75acc8d05
commit 98d71f0311
Signed by: tlater
GPG Key ID: 49670FD774E43268
1 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,10 @@ struct Config {
#[clap(long, default_value = "127.0.0.1:8000", value_parser)]
/// The address on which to listen
address: SocketAddr,
#[clap(long, action)]
/// Whether to start the server in dev mode; this enables some
/// nice handlebars features that are not intended for production
dev_mode: bool,
}
struct SharedData<'a> {
@ -88,6 +92,7 @@ async fn main() -> Result<(), std::io::Error> {
handlebars
.register_templates_directory(".html", config.template_directory.clone())
.expect("templates should compile correctly");
handlebars.set_dev_mode(config.dev_mode);
let shared_data = web::Data::new(SharedData {
handlebars,