Add information regarding environment variables in windows
Change-Id: If52ea811c6ce61ed2f154da60c904b23c58478a5
diff --git a/README.md b/README.md
index 414087f..e350a0c 100644
--- a/README.md
+++ b/README.md
@@ -125,6 +125,18 @@
$ MOJO_MODE=myconf perl script/kalamar daemon
```
+Or in the windows command line with:
+
+```cmd
+> cmd /C "set MOJO_MODE=qr && perl .\script\kalamar daemon"
+```
+
+Or in the windows powershell with:
+
+```powershell
+> $env:MOJO_MODE='myconf'; perl .\script\kalamar daemon; Remove-Item Env:\MOJO_MODE
+```
+
For client-side configurations, a file `kalamar.conf.js` can be
introduced, that will be consulted during the build process, loading
optional components using a `require(...)` directive (see example below).