Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Finb/bark-server
Browse files Browse the repository at this point in the history
  • Loading branch information
mritd committed Jul 11, 2022
2 parents 887c681 + 6603f12 commit bebf1cc
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,21 +54,24 @@ docker-compose up -d

Developers can compile this project by themselves, and the dependencies required for compilation:

- Golang 1.16+
- Golang 1.18+
- Go Mod Enabled(env `GO111MODULE=on`)
- Go Mod Proxy Enabled(env `GOPROXY=https://goproxy.cn`)
- `make` Installed
- [go-task](https://taskfile.dev/installation/) Installed

Run the following command to compile this project:

```sh
# Cross compile all platforms
make
task

# Or install into the local GOPATH
make install
# Compile the specified platform (please refer to Taskfile.yaml)
task linux_amd64
task linux_amd64_v3
```

**Note: The linux amd64 v3 architecture was added in go 1.18, see [https://github.com/golang/go/wiki/MinimumRequirements#amd64](https://github.com/golang/go/wiki/MinimumRequirements#amd64)**

### Nginx Proxy

Most users want to deploy the bark server on the intranet server, and then use Nginx to reverse proxy the bark server;
Expand Down

0 comments on commit bebf1cc

Please sign in to comment.