1234567891011121314151617181920 |
- <?php
- use App\Kernel;
- $_SERVER['APP_RUNTIME_OPTIONS'] = [
- 'host' => '0.0.0.0',
- 'port' => 8080,
- 'mode' => SWOOLE_BASE,
- 'settings' => [
- \Swoole\Constant::OPTION_WORKER_NUM => swoole_cpu_num() * 2,
- \Swoole\Constant::OPTION_ENABLE_STATIC_HANDLER => true,
- \Swoole\Constant::OPTION_DOCUMENT_ROOT => dirname(__DIR__).'/public'
- ],
- ];
- require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
- return function (array $context): Kernel {
- return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
- };
|