Skip to content

Commit

Permalink
Update config.md: use .env.local instead of .env (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
manipEgo authored Dec 28, 2023
1 parent 5a75705 commit aebf14e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zh-CN/guide/develop/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ plugins:

当项目启动时,会将环境变量中的值替换进去。

除了系统提供的环境变量外,Koishi 还原生支持 [dotenv](https://github.com/motdotla/dotenv)。你可以在当前目录创建一个 `.env` 文件,并在里面填写你的环境变量。这个文件已经被包含在 `.gitignore` 中,你可以在其中填写隐私信息 (例如账号密码) 而不用担心被上传到远端。例如在上面的例子中你就可以这样写:
除了系统提供的环境变量外,Koishi 还原生支持 [dotenv](https://github.com/motdotla/dotenv)。你可以在当前目录创建一个 `.env.local` 文件,并在里面填写你的环境变量。这个文件已经被包含在 `.gitignore` 中,你可以在其中填写隐私信息 (例如账号密码) 而不用担心被上传到远端。例如在上面的例子中你就可以这样写:

```sh title=.env
DISCORD_TOKEN = xxx
Expand Down

0 comments on commit aebf14e

Please sign in to comment.