Install Docker and Docker Compose:
sudo apt update
sudo apt install docker.io docker-compose
sudo systemctl start docker
sudo systemctl enable docker
Set Up Solana CLI:
sh -c "$(curl -sSfL <https://release.solana.com/v1.10.29/install>)"
export PATH="/home/username/.local/share/solana/install/active_release/bin:$PATH"
Install Kuzco CLI: Clone and install Kuzco from GitHub:
git clone <https://github.com/context-labs/kuzco>
cd kuzco
make install
Configure Your Node:
Set up the validator-config.yaml
file with your validator keys and Solana RPC settings.
Launch the Node: Use Docker Compose:
docker-compose up -d
Monitor Node Logs:
docker logs -f kuzco-validator