1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- define("APP_DEBUG", false);
- define("APP_NAMESPACE", 'api');
- define('CMF_ROOT', __DIR__.'/../../');
- define('GLOBAL_CONF_PATH', CMF_ROOT.'data/conf/');
- define('APP_PATH', CMF_ROOT.'api/');
- define('CMF_PATH', CMF_ROOT.'simplewind/cmf/');
- define('MINI_PATH', CMF_ROOT.'simplewind/huomp/');
- define('HUO_PATH', CMF_ROOT.'simplewind/huo/');
- define('HUOLIB_PATH', CMF_ROOT.'simplewind/huolib/');
- 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/sdk/');
- require CMF_ROOT.'simplewind/thinkphp/base.php';
- require CMF_ROOT.'data/conf/domain.inc.php';
- \think\App::run()->send();
|