File tree Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,33 @@ If your main concern is with the `Core` you don't need to build and start the wh
6262
6363## Other editors
6464
65- TBD
65+ ### No editor, Linux or macOS
66+
67+ The first step is to install Temurin JDB 17 - LTS.
68+ For Linux on x86, download:
69+ https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.15%2B6/OpenJDK17U-jdk_x64_linux_hotspot_17.0.15_6.tar.gz
70+
71+ For macOS users on Apple Silicon, download:
72+ https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.15%2B6/OpenJDK17U-jdk_aarch64_mac_hotspot_17.0.15_6.pkg
73+
74+ For everyone else, visit:
75+ https://adoptium.net/temurin/releases/?package=jdk&version=17&os=any&arch=any
76+
77+
78+ ```
79+ export JAVA_HOME=/path/to/temurin/jdk-17.0.15+6/
80+ ./gradlew build
81+ ./gradlew test
82+ ```
83+
84+ Then either:
85+ ```
86+ ./gradlew package
87+ ```
88+ which will result in the package being placed in ` app/build/compose/binaries ` , or
89+ ```
90+ ./gradlew run
91+ ```
6692
6793## Troubleshooting and Setup Tips (IntelliJ IDEA)
6894
You can’t perform that action at this time.
0 commit comments