Back to Gitbucket

Debug

doc/debug.md

4.46.1506 B
Original Source

Debug GitBucket on IntelliJ

Add following configuration for allowing remote debugging to build.sbt:

scala
javaOptions in Jetty ++= Seq(
  "-Xdebug",
  "-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000"
)

Run GitBucket:

shell
$ sbt ~container:start

In IntelliJ, create remote debug configuration as follows. Make sure port number is same as above configuration.

Then you can start debugging on IntelliJ!