2013-05-24 22:14:49 +08:00
|
|
|
<?php
|
|
|
|
|
2013-08-10 19:33:24 +08:00
|
|
|
// comment out the following two lines when deployed to production
|
2013-05-24 22:14:49 +08:00
|
|
|
defined('YII_DEBUG') or define('YII_DEBUG', true);
|
2013-07-08 08:29:19 +08:00
|
|
|
defined('YII_ENV') or define('YII_ENV', 'dev');
|
2013-05-24 22:14:49 +08:00
|
|
|
|
|
|
|
require(__DIR__ . '/../vendor/yiisoft/yii2/yii/Yii.php');
|
|
|
|
require(__DIR__ . '/../vendor/autoload.php');
|
2013-07-12 19:36:00 +08:00
|
|
|
Yii::importNamespaces(require(__DIR__ . '/../vendor/composer/autoload_namespaces.php'));
|
2013-05-24 22:14:49 +08:00
|
|
|
|
2013-06-23 08:26:22 +08:00
|
|
|
$config = require(__DIR__ . '/../config/web.php');
|
2013-05-24 22:14:49 +08:00
|
|
|
|
|
|
|
$application = new yii\web\Application($config);
|
|
|
|
$application->run();
|