update
This commit is contained in:
33
config/autoload/user.global.php
Normal file
33
config/autoload/user.global.php
Normal 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
|
||||
];
|
Reference in New Issue
Block a user