This commit is contained in:
2025-09-13 01:08:51 +08:00
parent f65d07884f
commit d76a5ba5a5
29 changed files with 941 additions and 0 deletions

View File

@ -0,0 +1,33 @@
<?php
/**
* Global Configuration Override
*
* You can use this file for overriding configuration values from modules, etc.
* You would place values in here that are agnostic to the environment and not
* sensitive to security.
*
* @NOTE: In practice, this file will typically be INCLUDED in your source
* control, so do not include passwords or other sensitive information in this
* file.
*/
declare(strict_types=1);
return [
'defaultToken' => [
'is_open' => 1,
'default_token' => 'OGRhMGVkZDk1M2QzNjQ5ZmQ5MDQ0N2M5'
],
'swAsyncTask' => [
'log' => FALSE,
'task' => FALSE,
],
'isOpenWechatWork' => false,
'isShowItemType' => true,
'logPath' => $_SERVER['DOCUMENT_ROOT'].'/../data/log/',
'itemIdentificationResultPath' => $_SERVER['DOCUMENT_ROOT'].'/../data/itemIdentificationResult/',
'formConfigPath' => $_SERVER['DOCUMENT_ROOT'].'/../formData/',
'sendUrl' => 'https://esm.kingdone.com',
'isSubmitItemForm' => [193],
'sendMsgTmpId' => '', // 受试者消息提醒消息模板ID
];