From 6538731548e7302dd6c224a579efb7ab896d8056 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CDexter?= <“ddexterpark@icloud.com> Date: Mon, 12 Oct 2020 09:17:08 -0500 Subject: [PATCH] docs: readme --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index e4afbfa..b2047ad 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,16 @@ This SDK can be compiled into a cross-platform static binary. Currently, we are ### Compiling Application from source ```shell script + # Linux/MacOS go build main.go mv main /usr/local/sbin/merakictl export PATH=/usr/local/bin:/usr/local/sbin:"$PATH" + + # Windows 64-bit + env GOOS=windows GOARCH=amd64 go build main.go + + # Windows 32-bit + env GOOS=windows GOARCH=386 go build main.go ``` ### Environment Variables