Atleta Validator Node Setup Guide


This guide will help you set up a validator node for the Atleta blockchain project. Follow the steps carefully to ensure your node is configured correctly and ready to participate in the network.

Prerequisites

  1. Operating System: A Linux-based OS (Ubuntu 20.04 LTS or later recommended).
  2. Hardware Requirements:
  3. Software: Docker and Docker Compose installed on your system.

Step-by-Step Setup

Step 1: Update and Install Dependencies

Start by updating your system and installing necessary dependencies:

sudo apt update && sudo apt upgrade -y
sudo apt install git curl -y

Step 2: Install Docker and Docker Compose

Follow the official Docker installation guide for your OS: Install Docker

After installing Docker, install Docker Compose:

sudo curl -L "<https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$>(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version

Step 3: Clone the Atleta Repository

Clone the official Atleta repository from GitHub:

git clone <https://github.com/atleta-project/atleta-node.git>
cd atleta-node

Step 4: Configure Your Node

Copy the sample environment file and modify it according to your setup: