1
0
mirror of https://git.cant.at/Madeorsk/PollVerlaine synced 2024-11-01 01:04:32 +01:00
PollVerlaine/config/app.default.php
Madeorsk b7ece5cdad General improvements.
+ Add a way to configure the db handler (default DB : BerkeleyDB 4);
+ Add a way to launch a database optimization on delete;
* Designed Multiple votes checkbox;
* Others minor improvements.
2018-08-16 12:56:53 +02:00

16 lines
363 B
PHP

<?php
$VERLAINE = [
"app_url" => "",
"chart_colors" => [
"#FF4B44", // Red.
"#FFD149", // Yellow.
"#56B3FF", // Dark blue.
"#FF9535", // Orange.
"#7DFF59", // Green.
"#FFAFEC", // Pink.
"#82FFE8", // Light blue.
],
"optimize_on_delete" => false,
"db_handler" => "db4", // See available handlers by using `php -r "var_dump(dba_handlers());"`
];