Revolutionizing blockchain validation with cutting-edge solutions. Strengthening networks through robust security and performance


Revolutionizing blockchain validation with cutting-edge solutions. Strengthening networks through robust security and performance
Share Dialog
Share Dialog

Subscribe to Carbon-12

Subscribe to Carbon-12
<100 subscribers
<100 subscribers
System Requirements
Ensure your system meets the following requirements:
Operating System: Linux (Ubuntu 20.04 or later recommended).
Hardware:
CPU: 4 cores or more.
Memory: 8 GB RAM or more.
Disk Space: Minimum 100 GB free space.
Network:
Stable internet connection.
Open required ports for communication (e.g., 8545, 30303).
Start by updating the package list and upgrading your current packages to the latest versions.
sudo apt update && sudo apt upgrade -y
VOI Swarm requires several dependencies. Install them with the following commands:
# Install Git
sudo apt install git -y
# Install Docker
sudo apt install docker.io -y
# Install Docker Compose
sudo apt install docker-compose -y
# Install Node.js (version 16.x or later)
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt install -y nodejs
Verify installations:
docker --version
docker-compose --version
node --version
npm --version
Use Git to clone the VOI Swarm repository to your local machine:
git clone https://github.com/voinetwork/voi-swarm.git
cd voi-swarm
Copy the example .env file and edit it to configure your environment settings:
cp .env.example .env
nano .env
Set the necessary variables in the .env file, such as:
Node URL
Wallet credentials
Port configurations
Save and exit (Ctrl+O, Ctrl+X).
Use Docker Compose to build and run the VOI Swarm services:
docker-compose up --build -d
This will:
Pull the required Docker images.
Build the containers.
Start the VOI Swarm services in detached mode.
Check the running containers:
You should see the VOI Swarm containers running. Access the web interface or interact with the platform using its APIs.
To stop the services:
docker-compose down
To update the platform:
git pull origin main
docker-compose up --build -d
System Requirements
Ensure your system meets the following requirements:
Operating System: Linux (Ubuntu 20.04 or later recommended).
Hardware:
CPU: 4 cores or more.
Memory: 8 GB RAM or more.
Disk Space: Minimum 100 GB free space.
Network:
Stable internet connection.
Open required ports for communication (e.g., 8545, 30303).
Start by updating the package list and upgrading your current packages to the latest versions.
sudo apt update && sudo apt upgrade -y
VOI Swarm requires several dependencies. Install them with the following commands:
# Install Git
sudo apt install git -y
# Install Docker
sudo apt install docker.io -y
# Install Docker Compose
sudo apt install docker-compose -y
# Install Node.js (version 16.x or later)
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt install -y nodejs
Verify installations:
docker --version
docker-compose --version
node --version
npm --version
Use Git to clone the VOI Swarm repository to your local machine:
git clone https://github.com/voinetwork/voi-swarm.git
cd voi-swarm
Copy the example .env file and edit it to configure your environment settings:
cp .env.example .env
nano .env
Set the necessary variables in the .env file, such as:
Node URL
Wallet credentials
Port configurations
Save and exit (Ctrl+O, Ctrl+X).
Use Docker Compose to build and run the VOI Swarm services:
docker-compose up --build -d
This will:
Pull the required Docker images.
Build the containers.
Start the VOI Swarm services in detached mode.
Check the running containers:
You should see the VOI Swarm containers running. Access the web interface or interact with the platform using its APIs.
To stop the services:
docker-compose down
To update the platform:
git pull origin main
docker-compose up --build -d
No activity yet