Skip to content

Update BUILD.md with directions for CLI build #1160

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,33 @@ If your main concern is with the `Core` you don't need to build and start the wh

## Other editors

TBD
### No editor, Linux or macOS

The first step is to install Temurin JDB 17 - LTS.
For Linux on x86, download:
https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.15%2B6/OpenJDK17U-jdk_x64_linux_hotspot_17.0.15_6.tar.gz

For macOS users on Apple Silicon, download:
https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.15%2B6/OpenJDK17U-jdk_aarch64_mac_hotspot_17.0.15_6.pkg

For everyone else, visit:
https://adoptium.net/temurin/releases/?package=jdk&version=17&os=any&arch=any


```
export JAVA_HOME=/path/to/temurin/jdk-17.0.15+6/
./gradlew build
./gradlew test
```

Then either:
```
./gradlew package
```
which will result in the package being placed in `app/build/compose/binaries`, or
```
./gradlew run
```

## Troubleshooting and Setup Tips (IntelliJ IDEA)

Expand Down