this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

qol: log whether we're in prod mode on startup

phil 54c9dbd5 dfec7432

+1 -1
+1 -1
web/src/main.rs
··· 268 268 let prod: bool = env::var("PROD") 269 269 .map(|val| val == "true") 270 270 .unwrap_or_else(|_| true); 271 - log::info!("listening on http://{}", addr); 271 + log::info!("listening on http://{addr} (mode: {})", if prod { "PROD" } else { "DEV" }); 272 272 273 273 let mut app = Router::new() 274 274 .route("/", get(home_handler))