2012-01-17 16:04:28 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
2012-01-18 14:27:01 -06:00
|
|
|
// Define the directory separator for the environment.
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
define('DS', DIRECTORY_SEPARATOR);
|
|
|
|
|
|
2012-01-17 16:04:28 -06:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
// Set the core Laravel path constants.
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
require 'paths.php';
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
// Bootstrap the Laravel core.
|
|
|
|
|
// --------------------------------------------------------------
|
2012-01-28 14:55:08 -06:00
|
|
|
require path('sys').'core.php';
|
2012-01-18 14:03:12 -06:00
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
// Start the default bundle.
|
|
|
|
|
// --------------------------------------------------------------
|
2012-03-06 17:27:41 -06:00
|
|
|
Laravel\Bundle::start(DEFAULT_BUNDLE);
|