17 lines
298 B
PHP
17 lines
298 B
PHP
<?php
|
|
$config = array();
|
|
/**
|
|
* Change db location here to point to your database from the bot
|
|
*/
|
|
$config['dbLocation'] = "trivia.db"; // eg "/home/trivia/trivia.db"
|
|
|
|
/**
|
|
* Includes location
|
|
*/
|
|
$config['libLocation'] = "includes/";
|
|
|
|
/**
|
|
* Views location
|
|
*/
|
|
$config['viewLocation'] = "views/";
|