@@ -41,10 +41,10 @@ The plugins and the `server` binary will be built in the `build` directory.
4141
4242You need the following three tools installed to build the server:
4343
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 )
4848
4949### Makefile targets
5050
@@ -68,15 +68,14 @@ Binaries are placed in the `build` directory.
6868You can also affect the build by setting the following environment variables. For example,
6969
7070``` bash
71- GOOS =linux GOARCH =amd64 make
71+ OS =linux ARCH =amd64 make
7272```
7373
7474| Variable | Description |
7575| ----------| -------------|
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 |
7878| ` BUILD_DIR ` | The target architecture for the build |
7979| ` VERBOSE ` | Setting this flag will provide verbose output for unit tests |
8080| ` VERSION ` | Explicitly set the version |
8181| ` DOCKER_REPO ` | The docker repository to push to. Defaults to ` ghcr.io/mutablelogic/go-server ` |
82-
0 commit comments