We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 343a457 commit 2784f95Copy full SHA for 2784f95
README.md
@@ -17,10 +17,26 @@ See the [docs](https://docs.kosli.com/client_reference/)
17
18
`make lint`
19
20
-## Building the code
+## Building the code (Mac/Linux)
21
22
`make build`
23
24
+Then to run Kosli commands:
25
+`./kosli [COMMAND]`
26
+
27
+## Building the code (Windows)
28
29
+Windows will not allow building using the makefile, so we need to run the commands directly in the terminal.
30
31
+`set GOFLAGS=""`
32
+`go mod download`
33
+`go mod tidy`
34
+`go vet ./...`
35
+`go build -o kosli.exe -ldflags '-extldflags "-static"' ./cmd/kosli/`
36
37
38
+`./kosli.exe [COMMAND]` or `.\kosli.exe [COMMAND]`
39
40
## Building the documentation
41
42
`make hugo-local`
0 commit comments