docs(README): update build from source methods

This commit is contained in:
Zaiming Shi 2020-12-09 23:25:39 +01:00
parent 573a4b2df8
commit c13cf20374
1 changed files with 13 additions and 4 deletions

View File

@ -40,13 +40,22 @@ Get the binary package of the corresponding OS from [EMQ X Download](https://www
The *EMQ X* broker requires Erlang/OTP R21+ to build since 3.0 release. The *EMQ X* broker requires Erlang/OTP R21+ to build since 3.0 release.
For 4.3 and later versions.
```bash
git clone https://github.com/emqx/emqx.git
cd emqx
make
_build/emqx/rel/emqx/bin console
``` ```
git clone -b v4.0.0 https://github.com/emqx/emqx-rel.git
cd emqx-rel && make For earlier versions, release has to be built from another repo.
cd _build/emqx/rel/emqx && ./bin/emqx console
```bash
git clone https://github.com/emqx/emqx-rel.git
cd emqx-rel
make
_build/emqx/rel/emqx/bin console
``` ```
## Quick Start ## Quick Start