this repo has no description
0
fork

Configure Feed

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

Correct that-

Mar 4d6486b6 812bdfc9

+1 -1
+1 -1
server/src/main.rs
··· 34 34 .map_err(|_| LuminaError::ConfInvalid("LUMINA_SERVER_ADDR".to_string()))? 35 35 }; 36 36 let port = { 37 - let s = std::env::var("LUMINA_SERVER_PORT").unwrap_or(String::from("8080")); 37 + let s = std::env::var("LUMINA_SERVER_PORT").unwrap_or(String::from("8085")); 38 38 s.parse::<u16>() 39 39 .map_err(|_| LuminaError::ConfInvalid("LUMINA_SERVER_PORT".to_string()))? 40 40 };