Skip to content

Latest commit

ย 

History

History
37 lines (26 loc) ยท 858 Bytes

File metadata and controls

37 lines (26 loc) ยท 858 Bytes

๐Ÿ”จ๏ธ Building

Build Morphe CLI from source.

๐Ÿ“ Requirements

  • Java Development Kit 11 (Azul Zulu JRE or OpenJDK)

๐Ÿ—๏ธ Building

To build Morphe CLI, follow these steps:

  1. Clone the repository:

    git clone git@github.com:MorpheApp/morphe-cli.git
    cd morphe-cli
  2. Build the project:

     ./gradlew build

Note

If the build fails due to authentication, you may need to authenticate to GitHub Packages. Create a PAT with the scope read:packages here and add your token to ~/.gradle/gradle.properties.

Example gradle.properties file:

gpr.user = user
gpr.key = key

After the build succeeds, the built JAR file will be located at build/libs/morphe-cli-<version>-all.jar.

โšก