Extheoisah / fresheyes-ref-impl

A first draft implementation of fresh eyes in Rust
1 stars 3 forks source link

FRESHEYES

Overview

This tool is designed to streamline the code review process by integrating with GitHub's API. It checks out a pull request (PR) branch, generates patches, and inserts GNU patch(1)-style diff comments, indicating where previous reviewers have left comments. This allows a user to conveniently review a pull request without distractions of the review comments, enhancing the efficiency of the review process.

It is targeted to noobs to a project who wants to understand the project code base better by reviewing past and present pull request without comment distractions.

The project consists of a Rust-based CLI tool and an API to help client to connect to our core functions.

Installation

Prerequisites

Steps

  1. Clone the Repository:

    git clone https://github.com/Extheoisah/fresheyes-ref-impl.git
    cd fresheyes-ref-impl

Using the CLI

Configuring Authorization

Upon first use, the tool will prompt you for your GitHub personal access token. This token will be stored in memory for the duration of the session and will be used for all subsequent GitHub API calls. If you prefer not to enter the token every time you start a new session, you can manually create a .fresheyes file in your home directory and store your token there:

echo "your_github_token" > ~/.fresheyes/fresheyes

Replace "your_github_token" with your actual GitHub token. This step is optional but recommended for convenience.

Follow this guide to create your Personal Access Token.

Select "all repositories" if you intend to use this tool with future repositories or repositories you haven't forked yet

Note: Your GitHub token must have the following privileges

Running the CLI

After installation, you can run the CLI tool as follows:

cd cli
cargo run -- owner repo pr_number

Example:

cargo run -- bitcoin bitcoin 8149

Setting up API server and client

The server and client can be run separately(independent of the CLI). The API is responsible for handling the GitHub API requests and the client(NextJS) is responsible for handling the user interface.

Running the server

from the project root directory

cd api

Running the client

Contributing

Contributions to this project are welcome! Please follow these steps:

  1. Fork the repository.
  2. Create an issue you want to work on.
  3. Create a new branch or your feature or fix.
  4. Commit your changes.
  5. Push to the branch.
  6. Create a new Pull Request.

Motivation

This tool is a product of the ideas by David Harding. The gist highlighting his thought process and idea development can be found here.