index.php 595 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. // comment out the following two lines when deployed to production
  8. defined('YII_DEBUG') or define('YII_DEBUG', true);
  9. defined('YII_ENV') or define('YII_ENV', 'dev'); // dev or prod
  10. require __DIR__ . '/../vendor/autoload.php';
  11. require __DIR__ . '/../vendor/yiisoft/yii2/Yii.php';
  12. require __DIR__ . '/../librarys/Application.php';
  13. $config = require __DIR__ . '/../config/web.php';
  14. (new app\librarys\Application($config))->run();