Below are the details for running and debugging a Kue application.
By default the application starts on port 4567.
gradle run --continuous
Use -Pport= to change the port the application runs on.
gradle run -Pport=9000 --continuous
To debug a Kue application, use a remote debugger. This is usually fairly easy to configure from within your IDE of choice. The command below will start the remote debugger for the Kue application on port 9999.
gradle run -Pdebug=9999 --continuous
You can specify JVM options via -PjvmOpts=<options>
.
gradle run -PjvmOpts="-Xmx1024m -Dfoo=bar" --continuous