Skip to content

Command line

David Gerber edited this page Jul 17, 2024 · 4 revisions

Building with the command line is really easy. You just need to have Java 21 installed then type:

Windows:

.\gradlew.bat bootRun

Linux/MacOS:

./gradlew bootRun

And a user interface to create your profile should show up.

To pass arguments to Xeres, just use the args feature, for example:

./gradlew bootRun --args="--no-gui --fast-shutdown"

(Use --args="--help" to know all arguments)

Clone this wiki locally