Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix standalone #67

Merged
merged 1 commit into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/deployment/deployment-standalone.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ MySQL 5.7 or above
## 2. Configuration Changes
### 2.1 Preparation of Installation Package

Download the source code from https://github.com/CloudOrc/SolidUI or https://github.com/CloudOrc/SolidUI/releases, and compile the corresponding installation package.
Download the source code from https://github.com/CloudOrc/SolidUI or https://github.com/CloudOrc/SolidUI/releases and compile the corresponding installation package.

After uploading the installation package solidui-x.x.x-bin.tar.gz, decompress the installation package
Compilation: [Server Compilation](/docs/development/development-server) and [Frontend Compilation](/docs/development/development-front)

After uploading the installation package solidui-x.x.x-bin.tar.gz, extract the installation package.

```shell script
tar -zxvf solidui-x.x.x-bin.tar.gz
Expand Down
7 changes: 5 additions & 2 deletions docs/deployment/deployment-web.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ sidebar_position: 1

## 1 Preparations

* Method 1: Download the address from the official website: https://github.com/CloudOrc/SolidUI/releases, and download the corresponding installation package (overall installation package).
* Method 2: Compile the project installation package according to SolidUI.
Download the source code from https://github.com/CloudOrc/SolidUI or https://github.com/CloudOrc/SolidUI/releases and compile the corresponding installation package.

Compilation: [Server Compilation](/docs/development/development-server) and [Frontend Compilation](/docs/development/development-front)

After uploading the installation package solidui-x.x.x-bin.tar.gz, extract the installation package.

```
tar -zxvf solidui-x.x.x-bin.tar.gz
Expand Down
10 changes: 9 additions & 1 deletion docs/development/server-compilation.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,12 @@ cd solidui-x.x.x-src
# Compile
mvn clean -N install
mvn clean install -Dmaven.test.skip=true -Prelease
```
```

## 4. Post-Compilation Files

The files after compilation are located in the solidui-x.x.x-src/solidui-dist/target directory and include the following files:

solidui-x.x.x-bin.tar.gz Installation Package

solidui-x.x.x-src.tar.gz Source Code Files
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ CPU 8核+,内存 16G+

方式1:从github仓库 https://github.com/CloudOrc/SolidUI 获取项目的源代码。

方式2:从https://github.com/CloudOrc/SolidUI/releases 下载下载所需版本的源码包
方式2:从https://github.com/CloudOrc/SolidUI/releases 下载所需版本的源码包

请下载源码包 solidui-x.x.x-src.tar.gz

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ Mysql5.7 或以上版本

https://github.com/CloudOrc/SolidUI 或者 https://github.com/CloudOrc/SolidUI/releases 下载源码,编译对应的安装包。

编译:[服务端编译](/docs/development/development-server) 和 [前端编译](/docs/development/development-front)

上传安装包solidui-x.x.x-bin.tar.gz后,进行解压安装包

```shell script
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ sidebar_position: 1

## 1 准备工作

* 方式1:从官网下载地址: https://github.com/CloudOrc/SolidUI/releases ,下载对应的安装包(整体安装包)。
* 方式2:根据SolidUI 自行编译出项目安装包。
https://github.com/CloudOrc/SolidUI 或者 https://github.com/CloudOrc/SolidUI/releases 下载源码,编译对应的安装包。

编译:[服务端编译](/docs/development/development-server) 和 [前端编译](/docs/development/development-front)

上传安装包solidui-x.x.x-bin.tar.gz后,进行解压安装包

```
tar -zxvf solidui-x.x.x-bin.tar.gz
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,11 @@ mvn clean install -Dmaven.test.skip=true -Prelease

```

## 4.编译后的文件

编译后的文件在solidui-x.x.x-src/solidui-dist/target目录下,包含以下文件:

solidui-x.x.x-bin.tar.gz 安装包

solidui-x.x.x-src.tar.gz 源码文件

Loading