start.php 343 B

123456789101112
  1. <?php
  2. !defined('APP_BASE_PATH') && define('APP_BASE_PATH', __DIR__ . '/');
  3. if (extension_loaded('jsonnet')) {
  4. !defined('CONFIG_FORMAT') && define('CONFIG_FORMAT', 'array,jsonnet');
  5. }
  6. require_once __DIR__ . '/vendor/autoload.php';
  7. //This app supports hot reload and shutdown triggered by SIGTERM
  8. (new \SwFwLess\bootstrap\App())->run();