Skip to content

Latest commit

 

History

History
53 lines (42 loc) · 1.49 KB

Getting-Started.md

File metadata and controls

53 lines (42 loc) · 1.49 KB

Getting Started with REChain

Prerequisites

Ensure the following tools and dependencies are installed on your system:

Setup Instructions

Node Development (Rust)

  1. Clone the repository:

    git clone https://github.com/sorydima/REChain-.git
    cd REChain-
  2. Build the project using Cargo: REChain is built using Rust, and cargo (Rust's package manager) will handle the compilation and dependencies.

    cargo build --release
  3. Run the REChain Node: Start a REChain node after building it. This will connect your machine to the decentralized REChain network.

    ./target/release/rechain-node --config ./config/config.toml

Frontend Development (Flutter)

  1. Set up Flutter: Install Flutter and ensure it is correctly configured by running:

    flutter doctor
  2. Clone the frontend repository (if applicable):

    git clone https://github.com/sorydima/REChain-Frontend.git
    cd REChain-Frontend
  3. Run the Flutter app: Install dependencies and run the app:

    flutter pub get
    flutter run