···226226 println!();
227227 let mut builder = tabled::builder::Builder::new();
228228 builder.push_record(["Name", "Default value", "Description"]);
229229- builder.push_record(["LUMINA_DB_TYPE", r#""sqlite""#, r#"The kind of database to use. Options are 'postgres' (recommended) or 'sqlite'."#]);
229229+ builder.push_record(["LUMINA_DB_TYPE", r#"sqlite"#, r#"The kind of database to use. Options are 'postgres' (recommended) or 'sqlite'."#]);
230230 builder.push_record([
231231 "LUMINA_DB_SALT",
232232- r#""sal""#,
232232+ r#"sal"#,
233233 r#"The salting to use for some data on the database."#,
234234 ]);
235235 builder.push_record([
···241241 builder.push_record(["LUMINA_SERVER_HTTPS", r#"false"#, "Wether to use 'https' rather than 'http' in links, etc. Recommendation is to set to true."]);
242242 builder.push_record([
243243 "LUMINA_SYNC_IID",
244244- r#""localhost""#,
244244+ r#"localhost"#,
245245 "Broadcasted domain name, should be equal to public domain name.",
246246 ]);
247247 builder.push_record([
···275275 ]);
276276 builder.push_record([
277277 "LUMINA_POSTGRES_HOST",
278278- r#""localhost""#,
278278+ r#"localhost"#,
279279 r#"The address to contact the database on."#,
280280 ]);
281281 builder.push_record([
···313313314314 builder.push_record([
315315 "LUMINA_SQLITE_FILE",
316316- r#""instance.sqlite""#,
316316+ r#"instance.sqlite"#,
317317 "SQLite file to connect to. Always a relative path from the instance folder.",
318318 ]);
319319 println!(