@ -50,7 +50,7 @@
* :card_file_box: Drag & Drop to manage your files.
* :card_file_box: Drag & Drop to manage your files.
* :family_woman_girl_boy: Multi-users with multi-groups.
* :family_woman_girl_boy: Multi-users with multi-groups.
* :link: Create share links for files and folders with expiration date.
* :link: Create share links for files and folders with expiration date.
* :eye_speech_bubble: Preview videos, images, audios, texts, Office documents, ePub file s online.
* :eye_speech_bubble: Preview videos, images, audios, ePub files online; edit texts, Office documents online.
* :art: Customize theme colors, dark mode, PWA application, SPA, i18n.
* :art: Customize theme colors, dark mode, PWA application, SPA, i18n.
* :rocket: All-In-One packing, with all features out-of-the-box.
* :rocket: All-In-One packing, with all features out-of-the-box.
* 🌈 ... ...
* 🌈 ... ...
@ -74,50 +74,24 @@ The above is a minimum deploy example, you can refer to [Getting started](https:
## :gear: Build
## :gear: Build
You need to have `Go >= 1.18` , `node.js` , `yarn` , `zip` and other necessary dependencies before you can build it yourself.
You need to have `Go >= 1.18` , `node.js` , `yarn` , `zip` , [goreleaser ](https://goreleaser.com/intro/ ) and other necessary dependencies before you can build it yourself.
#### Clone the code
#### Install goreleaser
```shell
```shell
git clone --recurse-submodules https://github.com/cloudreve/Cloudreve.gi t
go install github.com/goreleaser/goreleaser@lates t
```
```
#### Build static resources
#### Clone the code
```shell
```shell
# Enter frontend sub-module
git clone --recurse-submodules https://github.com/cloudreve/Cloudreve.git
cd assets
# Install dependencies
yarn install
# Start building
yarn run build
# Delete unused map files
cd build
find . -name "*.map" -type f -delete
# Return to main folder to pack static files
cd ../../
zip -r - assets/build >assets.zip
```
```
#### Compile
#### Compile
```shell
```shell
# Obtain version number, commit SHA
goreleaser build --clean --single-target --snapshot
export COMMIT_SHA=$(git rev-parse --short HEAD)
export VERSION=$(git describe --tags)
# Compile
go build -a -o cloudreve -ldflags "-s -w -X 'github.com/cloudreve/Cloudreve/v3/pkg/conf.BackendVersion=$VERSION' -X 'github.com/cloudreve/Cloudreve/v3/pkg/conf.LastCommit=$COMMIT_SHA'"
```
You can also start a quick build using `build.sh` in the project root directory:
```shell
./build.sh [-a] [-c] [-b] [-r]
a - Build assets
c - Build binary backend
b - Build both assets and backend
r - Cross-compilation for final release
```
```
## :alembic: Stacks
## :alembic: Stacks