forked from aitexiaoy/Strawberry-Wallpaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,6 @@ node_modules/ | |
npm-debug.log | ||
npm-debug.log.* | ||
thumbs.db | ||
.user-config.json | ||
.user-config.js | ||
!.gitkeep | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** | ||
* 用户的自定义配置文件,存放用户的一些账号信息。 | ||
* 执行npm命令后会自动生成.user-config.js文件。 | ||
* 目前相关信息只会影响到电子邮箱与关键词的翻译 | ||
*/ | ||
export default { | ||
emailUserName: '', // 电子邮箱账号 | ||
emailPassword: '', // 电子邮箱的授权码 | ||
baiDuTranslationAppId: '', // 百度翻译的appID | ||
baiDuTranslationAppKey: '' // 百度翻译的appKey | ||
} |