diff --git a/.env b/.env index 01c668b8..7b279a2e 100644 --- a/.env +++ b/.env @@ -80,6 +80,9 @@ citation_chat_model = qwen2.5:7b citation_chat_api_key = citation_chat_timeout = 120 +[scopus] +api_key = 54f915fc96e86b94ae8722ce7fdd69c7 + [emailtemplete] pre = ' diff --git a/application/common/service/AuthorBackgroundService.php b/application/common/service/AuthorBackgroundService.php index 46873cba..469dbcda 100644 --- a/application/common/service/AuthorBackgroundService.php +++ b/application/common/service/AuthorBackgroundService.php @@ -23,7 +23,7 @@ class AuthorBackgroundService { $this->email = trim((string) Env::get('author_bg.email', '')); if ($this->email === '') { - $this->email = trim((string) Env::get('pubmed.email', 'contact@example.com')); + $this->email = trim((string) Env::get('pubmed.email', 'yananwang898@gmail.com')); } $this->scopusApiKey = trim((string) Env::get('scopus.api_key', '')); if ($this->scopusApiKey === '') {