Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.07 KB

getting-started.md

File metadata and controls

53 lines (40 loc) · 1.07 KB

Getting Started with OPSource

This guide will help you set up and start using OPSource for blockchain analytics.

Prerequisites

  • Python 3.11 or higher
  • Git
  • Virtual environment (recommended)

Installation Steps

  1. Clone the Repository

    git clone --recursive https://github.com/botshelomokoka/OPSource.git
    cd OPSource
  2. Set Up Python Environment

    python -m venv venv
    source venv/bin/activate  # On Windows: venv\Scripts\activate
    pip install -r requirements.txt
  3. Configure Environment

    cp config/example.env .env
    # Edit .env with your configuration settings
  4. Verify Installation

    python scripts/track_development.py

Basic Usage

  1. View Analytics Dashboard

    python -m dash33.main
  2. Generate Reports

    python scripts/generate_reports.py

Next Steps