Before you start, ensure you have the following:
gitcurljqdocker & docker-compose (if using Docker)Update your package list and install the required dependencies.
sudo apt update && sudo apt upgrade -y
sudo apt install git curl jq build-essential -y
The Centra Novella node is built with Go, so you need to install it.
curl -OL <https://golang.org/dl/go1.20.6.linux-amd64.tar.gz>
sudo tar -C /usr/local -xzf go1.20.6.linux-amd64.tar.gz
Add Go to your PATH by editing your .profile or .bashrc:
echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.bashrc
source ~/.bashrc
Verify Go installation:
go version
Clone the Centra Novella repository.
git clone <https://github.com/centra-novella/centra-novella.git>
cd centra-novella