Updated 构建和启动 (markdown)

LXW
2023-09-13 14:24:41 +08:00
parent 49b2c24040
commit e793562782

@@ -1,26 +1,25 @@
### 系统构建
`sh assembly/bin/supersonic-build.sh` 执行构建
### 系统启动
* **Release包启动**
1. 下载最新release包
2. `sh assembly/bin/supersonic-daemon.sh restart`
3. http://localhost:9080
* **IDE启动**(默认已构建好)(后端直接访问前端资源的方式)
1. `sh assembly/bin/supersonic-daemon.sh restart llmparser`启动LLM服务
* **IDE启动**(后端直接访问前端资源的方式)
1. `sh assembly/bin/supersonic-build.sh` 执行构建
2. `sh assembly/bin/supersonic-daemon.sh restart llmparser`启动LLM服务
2. IDE本地启动StandaloneLauncher
3. http://localhost:9080
* **IDE启动**(默认已构建好)(前后端分开启动的方式)
1. `sh assembly/bin/supersonic-daemon.sh restart llmparser`启动LLM服务
2. IDE本地启动StandaloneLauncher
3. `sh webapp/start-fe-dev.sh`直接启动前端服务
4. http://localhost:9000 **注意这里是9000端口**
* **IDE启动**(前后端分开启动的方式)
1. `sh assembly/bin/supersonic-build.sh` 执行构建
2. `sh assembly/bin/supersonic-daemon.sh restart llmparser`启动LLM服务
3. IDE本地启动StandaloneLauncher
4. `sh webapp/start-fe-dev.sh`直接启动前端服务
5. http://localhost:9000 **注意这里是9000端口**
* **Source Code启动**(默认已构建好)
1. `sh assembly/bin/supersonic-daemon.sh restart`
2. http://localhost:9080
* **Source Code启动**
1. `sh assembly/bin/supersonic-build.sh` 执行构建
2. `sh assembly/bin/supersonic-daemon.sh restart`
3. http://localhost:9080
PS:
1. Windows环境均有提供对应的bat脚本, 执行即可