-
Notifications
You must be signed in to change notification settings - Fork 27
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
Mention ./gradlew jvmRun in the README #57
Conversation
I think this is the preferred way to run it? (As opposed to downloading binaries?)
README.md
Outdated
@@ -33,6 +33,8 @@ which panels are visible using the *View* menu. | |||
|
|||
# Running Kotlin Explorer | |||
|
|||
Kotlin Explorer is a Compose Desktop application. Run it with `./gradlew run`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to mention it's a Compose Desktop application and ./gradlew run
won't work. It's ./gradlew jvmRun
and it needs the commit I just pushed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I swear I have ./gradlew run
work with commit 10272421e8bdad56b01b6cdea2325ea6d170af7d
. No idea why 🤷
I'll update to jvmRun
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On which OS? kotlin-explorer needs the JetBrains' runtime because of Jewel and its extensions, and a straight run
will only work if your default JDK/JRE is a JetBrains one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have MacOS and a jbrsdk:
$ echo $JAVA_HOME
/Library/Java/JavaVirtualMachines/jbrsdk-17.0.10-osx-aarch64-b1087.23/Contents/Home/
So that explains it 👍 . Text updated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
I think this is the preferred way to run it? (As opposed to downloading binaries?)
See also #52