Various Modifications

Move everything into App Directory
Add a SQLite Library
This commit is contained in:
2012-09-07 12:19:33 -05:00
parent 52b3f04ade
commit a371f1b0ff
11 changed files with 162 additions and 39 deletions

18
app/config.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
// This is the controller that will be hit by default
$default_controller = "welcome";
// Global Model Includes
// These are Models that we ALWAYS want loaded
$global_models = array();
// Global Library Includes
// These are Libraries that we ALWAYS want loaded
$global_libraries = array();
// This tells the system to throw away the first URI token
// For example, if the system is kept in:
// http://mysite.com/folder1/
// Then setting this should be set to 1
$starting_token = 0;