oddluck f7590e79da Add 'TriviaTime/' from commit 'ae216897cd9c45259853c3f84eae826f344482aa'
git-subtree-dir: TriviaTime
git-subtree-mainline: 3551587ecdefc75e34b8b2a87d91a466bdf4c764
git-subtree-split: ae216897cd9c45259853c3f84eae826f344482aa
2019-02-14 13:32:21 -05:00

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";