12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- define("APP_DEBUG", true);
- define("APP_NAMESPACE", 'console');
- define('CMF_ROOT', __DIR__.'/');
- define('GLOBAL_CONF_PATH', CMF_ROOT.'data/conf/');
- define('APP_PATH', CMF_ROOT.'console/');
- define('CMF_PATH', CMF_ROOT.'simplewind/cmf/');
- define('HUO_PATH', CMF_ROOT.'simplewind/huo/');
- define('HUOLIB_PATH', CMF_ROOT.'simplewind/huolib/');
- define('QUEUE_PATH', CMF_ROOT.'simplewind/queue/');
- define('PLUGINS_PATH', __DIR__.'/plugins/');
- define('EXTEND_PATH', CMF_ROOT.'simplewind/extend/');
- define('VENDOR_PATH', CMF_ROOT.'simplewind/vendor/');
- define('RUNTIME_PATH', CMF_ROOT.'data/runtime/console/');
- require CMF_ROOT.'simplewind/thinkphp/base.php';
- require GLOBAL_CONF_PATH.'domain.inc.php';
- \think\App::run()->send();
|