From dd434c7059bcdbb2338029250aedabb7107ba327 Mon Sep 17 00:00:00 2001 From: heiehu <653838873@qq.com> Date: Mon, 12 May 2025 18:54:47 +0800 Subject: [PATCH] Update Quick-Start.md --- docs/Quick-Start.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/Quick-Start.md b/docs/Quick-Start.md index 938aff8..d4210a6 100644 --- a/docs/Quick-Start.md +++ b/docs/Quick-Start.md @@ -52,7 +52,7 @@ touch index.js .env # 创建index.js 以及 .env(环境配置文件) ```js const discuss = require('discuss') -// 选择以什么方式运行 +// 选择以什么方式运行,index.js应该只包含启动的const discuss行和下面的其中一行 discuss.server() // 服务器使用 (Server) discuss.main() // 无服务器使用 (ServerLess) @@ -164,6 +164,8 @@ D_MONGO_SSL= + + ...