mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
12 lines
399 B
PHP
12 lines
399 B
PHP
![]() |
<?php
|
||
|
|
||
|
ini_set("display_errors", 1);
|
||
|
define('SF_ROOT_DIR', realpath(dirname(__file__).'/..'));
|
||
|
define('SF_APP', 'atlbiomed');
|
||
|
define('SF_ENVIRONMENT', 'dev');
|
||
|
define('SF_DEBUG', 1);
|
||
|
|
||
|
require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'apps'.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');
|
||
|
|
||
|
sfContext::getInstance()->getController()->dispatch();
|