From e14cd5dd17e83131b3b2242d313cb8a69f627bce Mon Sep 17 00:00:00 2001 From: Badlop Date: Fri, 16 Jul 2021 10:10:12 +0200 Subject: [PATCH] Mention in README.md the updated --with-rebar and "make dev" --- README.md | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 35b15920b..1662fc05c 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,7 @@ To compile ejabberd you need: - PAM library. Optional. For Pluggable Authentication Modules (PAM). - ImageMagick's Convert program and Ghostscript fonts. Optional. For CAPTCHA challenges. + - Elixir ≥ 1.10.3. Optional. Alternative to build ejabberd If your system splits packages in libraries and development headers, you must install the development packages also. @@ -155,9 +156,25 @@ start and stop ejabberd. For example: ejabberdctl start -For detailed information please refer to the ejabberd Installation and -Operation Guide available online and in the `doc` directory of the source -tarball. +For detailed information please refer to the +[ejabberd Documentation](https://docs.ejabberd.im) + + +### 3. Use ejabberd locally + +Alternatively, you can setup ejabberd without installing in your system: + + ./configure --with-rebar=./rebar3 + make dev + +Or, if you have Elixir available and plan to develop Elixir code: + + ./configure --with-rebar=mix + make dev + +Check the full list of targets: + + make help Development