aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorEmanuele Aliberti <ealib@users.noreply.github.com>2022-04-05 12:27:29 +0200
committerGitHub <noreply@github.com>2022-04-05 11:27:29 +0100
commitfb10633a80395b56ad92f0a82adcfbe2ed809cb3 (patch)
tree221e88f2b8a026c631153bbd00bb9cec5f30486e /docs
parent2defc4249d650f0bd43aa33b49b6b20032db43a4 (diff)
build.sh to build.cmd (#2319)
* build.sh to build.cmd convert and adapt for Windows users * remove hardwired GO ARCH * silence cmd.exe * update directions for Windows * Update INSTALL.md Co-authored-by: emanuele.aliberti <emanuele.aliberti@mtka.eu> Co-authored-by: Neil Alexander <neilalexander@users.noreply.github.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/INSTALL.md16
1 files changed, 13 insertions, 3 deletions
diff --git a/docs/INSTALL.md b/docs/INSTALL.md
index 523c5c7d..ca1316ac 100644
--- a/docs/INSTALL.md
+++ b/docs/INSTALL.md
@@ -34,6 +34,10 @@ If you want to run a polylith deployment, you also need:
* A standalone [NATS Server](https://github.com/nats-io/nats-server) deployment with JetStream enabled
+If you want to build it on Windows, you need `gcc` in the path:
+
+* [MinGW-w64](https://www.mingw-w64.org/)
+
## Building Dendrite
Start by cloning the code:
@@ -45,9 +49,15 @@ cd dendrite
Then build it:
-```bash
-./build.sh
-```
+* Linux or UNIX-like systems:
+ ```bash
+ ./build.sh
+ ```
+
+* Windows:
+ ```dos
+ build.cmd
+ ```
## Install NATS Server