yii2-netdisk/web/index.php

13 lines
367 B
PHP
Raw Normal View History

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
defined('YII_DEBUG') or define('YII_DEBUG', true);
defined('YII_ENV') or define('YII_ENV', 'dev');
2013-05-24 22:14:49 +08:00
2017-09-12 17:16:50 +08:00
require __DIR__ . '/../vendor/autoload.php';
require __DIR__ . '/../vendor/yiisoft/yii2/Yii.php';
2013-05-24 22:14:49 +08:00
2017-09-12 17:16:50 +08:00
$config = require __DIR__ . '/../config/web.php';
2013-05-24 22:14:49 +08:00
2013-12-18 13:40:52 +08:00
(new yii\web\Application($config))->run();