https://github.com/volodiakraplich/chromedino
ChromeDino on Scala (It's just a test project, I won't work on it anymore)
https://github.com/volodiakraplich/chromedino
chrome chromedino dino scala
Last synced: 11 months ago
JSON representation
ChromeDino on Scala (It's just a test project, I won't work on it anymore)
- Host: GitHub
- URL: https://github.com/volodiakraplich/chromedino
- Owner: VolodiaKraplich
- Created: 2024-09-22T13:25:18.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-22T13:43:39.000Z (almost 2 years ago)
- Last Synced: 2025-06-05T08:48:43.068Z (about 1 year ago)
- Topics: chrome, chromedino, dino, scala
- Language: Scala
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Build Options
Choose one of the following build options:
1. **Package**: This is the default build option. It creates a JAR file that can be run on any JVM.
2. **Native Image**: This option builds a native executable using GraalVM Native Image. It results in faster startup times and lower memory usage but may have limitations on certain Java features.
To use Native Image, ensure you have GraalVM installed and configured. Then, uncomment and set the `graalVMNativeImageCommand` in your `build.sbt` file:
```sbt
graalVMNativeImageCommand := "/path/to/graalvm/bin/native-image"
```
Note: If you're not using Native Image, you can leave this line commented out or remove it entirely.