For the complete documentation index, see llms.txt. This page is also available as Markdown.

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 golang

Verify:

go version

Build 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