9.3 Building the Node (If Required)
Depending on implementation, the node may need to be compiled.
Build Using Go (if Go-based)
If the node is written in Go:
sudo apt install -y golangVerify:
go versionBuild the node:
go build -o frecx-node .This creates an executable named frecx-node.
Build Using Docker (Alternative)
If Docker is used:
docker build -t frecx-node .This creates a containerized version of the node.
Last updated