this repo has no description
0
fork

Configure Feed

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

why would they be randomly quoted pt 2

+5 -5
+5 -5
server/src/main.rs
··· 226 226 println!(); 227 227 let mut builder = tabled::builder::Builder::new(); 228 228 builder.push_record(["Name", "Default value", "Description"]); 229 - builder.push_record(["LUMINA_DB_TYPE", r#""sqlite""#, r#"The kind of database to use. Options are 'postgres' (recommended) or 'sqlite'."#]); 229 + builder.push_record(["LUMINA_DB_TYPE", r#"sqlite"#, r#"The kind of database to use. Options are 'postgres' (recommended) or 'sqlite'."#]); 230 230 builder.push_record([ 231 231 "LUMINA_DB_SALT", 232 - r#""sal""#, 232 + r#"sal"#, 233 233 r#"The salting to use for some data on the database."#, 234 234 ]); 235 235 builder.push_record([ ··· 241 241 builder.push_record(["LUMINA_SERVER_HTTPS", r#"false"#, "Wether to use 'https' rather than 'http' in links, etc. Recommendation is to set to true."]); 242 242 builder.push_record([ 243 243 "LUMINA_SYNC_IID", 244 - r#""localhost""#, 244 + r#"localhost"#, 245 245 "Broadcasted domain name, should be equal to public domain name.", 246 246 ]); 247 247 builder.push_record([ ··· 275 275 ]); 276 276 builder.push_record([ 277 277 "LUMINA_POSTGRES_HOST", 278 - r#""localhost""#, 278 + r#"localhost"#, 279 279 r#"The address to contact the database on."#, 280 280 ]); 281 281 builder.push_record([ ··· 313 313 314 314 builder.push_record([ 315 315 "LUMINA_SQLITE_FILE", 316 - r#""instance.sqlite""#, 316 + r#"instance.sqlite"#, 317 317 "SQLite file to connect to. Always a relative path from the instance folder.", 318 318 ]); 319 319 println!(