The `SERVER_IP` environment variable is required. It defines the nexus-server ip address; it must match the address defined in `config/certs/nexus-server.info` (typically 127.0.0.1 for a development server).
For now, the only supported combination of OS and architecture for nexus-exam is Linux/amd64. Furthermore, it cannot be built statically as some static libraries are missing.
```sh
make build_nexus-exam
```
Running nexus-exam requires the `CERT` environment variable. It specifies the directory where the public certificate `ca-cert.pem` resides (typically in `nexus-server/certs/`).
Running nexus-exam requires `SERVER_IP` and `CERT` environment variables. The former defines the nexus-server ip address; it must match the address defined in `config/certs/nexus-server.info` (typically 127.0.0.1 for a development server). The latter specifies the directory where the public certificate `ca-cert.pem` resides (typically in `nexus-server/certs/`):
To run it:
```sh
CERT=$HOME SERVER_IP=10.0.2.15 make run_nexus-exam