mirror of
https://github.com/oddluck/limnoria-plugins.git
synced 2025-04-29 15:01:11 -05:00
git-subtree-dir: TriviaTime git-subtree-mainline: 3551587ecdefc75e34b8b2a87d91a466bdf4c764 git-subtree-split: ae216897cd9c45259853c3f84eae826f344482aa
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";
|