@@ -41,10 +41,10 @@ The plugins and the `server` binary will be built in the `build` directory.
41
41
42
42
You need the following three tools installed to build the server:
43
43
44
- - [ Go] ( https://golang.org/doc/install/source ) (1.23 or later, not required for docker builds)
45
- - [ Make] ( https://www.gnu.org/software/make/ )
46
- - [ Docker] ( https://docs.docker.com/get-docker/ )
47
- - [ NPM] ( https://docs.npmjs.com/downloading-and-installing-node-js-and-npm )
44
+ * [ Go] ( https://golang.org/doc/install/source ) (1.23 or later, not required for docker builds)
45
+ * [ Make] ( https://www.gnu.org/software/make/ )
46
+ * [ Docker] ( https://docs.docker.com/get-docker/ )
47
+ * [ NPM] ( https://docs.npmjs.com/downloading-and-installing-node-js-and-npm )
48
48
49
49
### Makefile targets
50
50
@@ -68,15 +68,14 @@ Binaries are placed in the `build` directory.
68
68
You can also affect the build by setting the following environment variables. For example,
69
69
70
70
``` bash
71
- GOOS =linux GOARCH =amd64 make
71
+ OS =linux ARCH =amd64 make
72
72
```
73
73
74
74
| Variable | Description |
75
75
| ----------| -------------|
76
- | ` GOOS ` | The target operating system for the build |
77
- | ` GOARCH ` | The target architecture for the build |
76
+ | ` OS ` | The target operating system for the build |
77
+ | ` ARCH ` | The target architecture for the build |
78
78
| ` BUILD_DIR ` | The target architecture for the build |
79
79
| ` VERBOSE ` | Setting this flag will provide verbose output for unit tests |
80
80
| ` VERSION ` | Explicitly set the version |
81
81
| ` DOCKER_REPO ` | The docker repository to push to. Defaults to ` ghcr.io/mutablelogic/go-server ` |
82
-
0 commit comments