37 lines
610 B
PHP
37 lines
610 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/";
|
|
|
|
/**
|
|
* Config location
|
|
*/
|
|
$config['configLocation'] = "config/";
|
|
|
|
/**
|
|
* Controllers location
|
|
*/
|
|
$config['controllerLocation'] = "controllers/";
|
|
|
|
/**
|
|
* Prefix for all routes (eg '/trivia')
|
|
*/
|
|
$config['baseRoute'] = '';
|
|
|
|
/**
|
|
* Default page after logging in
|
|
*/
|
|
$config['defaultLoginRedirectPage'] = "home";
|