Skip to content

Latest commit

 

History

History
48 lines (43 loc) · 901 Bytes

running-the-project.md

File metadata and controls

48 lines (43 loc) · 901 Bytes

Running the Project

Prerequisites

Before starting, make sure you have:

  • Java installed (Java 21 recommended)
  • (Optional) Gradle installed globally (gradle -v to check)

Installation

  1. Clone the project
    git clone https://github.com/CoCoSol007/hyper.git
    cd hyper
  2. Grant execution permission to the Gradle wrapper (Linux/Mac)
    chmod +x gradlew

Running the Project

Using the Gradle Wrapper (recommended)

  • On Linux/Mac:
    ./gradlew run
  • On Windows:
    gradlew.bat run

If Gradle is installed globally

You can use the command:

gradle run

Other Useful Commands

  • Build the project:
    ./gradlew build
  • Clean generated files:
    ./gradlew clean
  • Run tests:
    ./gradlew test