Updated 构建和启动 (markdown)

Jun Zhang
2023-09-15 13:03:52 +08:00
parent 95b760227c
commit 843a4d416c

@@ -1,24 +1,24 @@
* **Release包启动** * **Release包启动**
1. 下载最新release包 1. 下载最新release包
2. `sh bin/supersonic-daemon.sh restart` 2. `sh bin/supersonic-daemon.sh start`
3. http://localhost:9080 3. http://localhost:9080
* **IDE启动**(后端直接访问前端资源的方式) * **IDE启动**(后端直接访问前端资源的方式)
1. `sh assembly/bin/supersonic-build.sh` 执行构建 1. `sh assembly/bin/supersonic-build.sh` 执行构建
2. `sh assembly/bin/supersonic-daemon.sh restart llmparser`启动调用LLM的python服务 2. `sh assembly/bin/supersonic-daemon.sh start llmparser`启动调用LLM的python服务
2. IDE本地启动Java类StandaloneLauncher 2. IDE本地启动Java类StandaloneLauncher
3. http://localhost:9080 3. http://localhost:9080
* **IDE启动**(前后端分开启动的方式) * **IDE启动**(前后端分开启动的方式)
1. `sh assembly/bin/supersonic-build.sh` 执行构建 1. `sh assembly/bin/supersonic-build.sh` 执行构建
2. `sh assembly/bin/supersonic-daemon.sh restart llmparser`启动调用LLM的python服务 2. `sh assembly/bin/supersonic-daemon.sh start llmparser`启动调用LLM的python服务
3. IDE本地启动Java类StandaloneLauncher 3. IDE本地启动Java类StandaloneLauncher
4. 进入webapp目录执行`sh start-fe-dev.sh`直接启动前端服务 4. 进入webapp目录执行`sh start-fe-dev.sh`直接启动前端服务
5. http://localhost:9000 **注意这里是9000端口** 5. http://localhost:9000 **注意这里是9000端口**
* **Source Code启动** * **Source Code启动**
1. `sh assembly/bin/supersonic-build.sh` 执行构建 1. `sh assembly/bin/supersonic-build.sh` 执行构建
2. `sh assembly/bin/supersonic-daemon.sh restart` 2. `sh assembly/bin/supersonic-daemon.sh start`
3. http://localhost:9080 3. http://localhost:9080
PS: PS: