FoxHoundTechnology / python-termui

0 stars 0 forks source link

python-termui

Table of Contents

Installation

To install the project, follow these steps:

git clone https://github.com/yourusername/yourproject.git
cd yourproject
pip install -r requirements.txt

Usage

After installing the necessary dependencies, you can run the project using:

python main.py

Configuration

The project can be optionally configured using a YAML file. This file allows you to specify name of your fleets and its ip ranges

Example YAML File

Here is an example of how the YAML configuration file should look:

miners:
  - name: Container 1
    ip_start: 192.168.0.10  
    ip_end: 192.168.0.100
  - name: Container 2
    ip_start: 192.168.1.10  
    ip_end: 192.168.1.100
  - name: Container 3
    ip_start: 192.168.2.10  
    ip_end: 192.168.2.100

credentials:
  username: root
  password: root

Explanation