From fad285283f1b5254cb095d648da373daf9728e50 Mon Sep 17 00:00:00 2001 From: MrAoDragon Date: Tue, 25 Jan 2022 12:04:03 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=BA=86=E9=A2=84?= =?UTF-8?q?=E8=A7=88=E6=AD=A5=E9=AA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f1206b3..e40e6b0 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,8 @@ _ / / / / /___ ____/ /_ / / / / /_/ /_ / / / /_/ /_ /_/ // __/ / 项目处于开发阶段,如果想促进开发或关注进度您可以点击左上角的 `star` 给予我们基本的支持。 +项目已发布第一个release,可以投入生产环境。 + 若您想成为本项目的赞助者,请访问官方网站浏览至最底下。
@@ -61,8 +63,23 @@ _ / / / / /___ ____/ /_ / / / / /_/ /_ / / / /_/ /_ /_/ // __/ / ## 预览 -此项目无法预览,您下载源代码运行后只能得到无法直接控制的守护进程程序,因为它需要 Web 端的接口调用才能执行功能,而 Web 端源程序还未开源(计划开源时覆盖 MCSManager 主仓库),所以此项目下载后是基本无用的。 +您需要安装[面板部分](https://gitee.com/mcsmanager/MCSManager-Daemon-Production)并正确启动,安装npm,并将本仓库的 +> app.js +> package.json +> package-lock.json +下载到服务器同一位置,然后使用以下命令初始化并启动daemon端。 +```bash +npm install +node app.js +``` +程序会输出以下内容 +```log + 访问地址 localhost:24444 + 访问密钥 [你的密钥,是一串16进制数字] + 密钥作为守护进程唯一认证手段 +``` +使用密钥在web端添加实例即可。
## 版权信息 From 1d40de09c8d736c16c79128cc94f9f81d587ceff Mon Sep 17 00:00:00 2001 From: MrAoDragon Date: Tue, 25 Jan 2022 12:47:11 +0800 Subject: [PATCH 2/2] =?UTF-8?q?2=E6=AC=A1=E6=94=B9=E8=BF=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e40e6b0..33ea058 100644 --- a/README.md +++ b/README.md @@ -61,14 +61,11 @@ _ / / / / /___ ____/ /_ / / / / /_/ /_ / / / /_/ /_ /_/ // __/ /
-## 预览 +## 安装 -您需要安装[面板部分](https://gitee.com/mcsmanager/MCSManager-Daemon-Production)并正确启动,安装npm,并将本仓库的 -> app.js -> package.json -> package-lock.json +您需要安装[面板部分](https://gitee.com/mcsmanager/MCSManager-UI)才能正常使用本软件。 -下载到服务器同一位置,然后使用以下命令初始化并启动daemon端。 +安装npm,并克隆[部署用Daemon代码](https://gitee.com/mcsmanager/MCSManager-Daemon-Production),然后使用以下命令初始化并启动daemon端。 ```bash npm install node app.js @@ -80,6 +77,15 @@ node app.js 密钥作为守护进程唯一认证手段 ``` 使用密钥在web端添加实例即可。 +如需停止直接输入: +```bash +exit +``` +下次启动直接在daemon存放地点执行 +```bash +node app.js +``` +即可。
## 版权信息