mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-10-27 16:46:15 +01:00
503 B
503 B
Debug GitBucket on IntelliJ
Add following configuration for allowing remote debugging to buils.sbt:
javaOptions in Jetty ++= Seq(
"-Xdebug",
"-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000"
)
Run GitBucket:
$ sbt ~jetty: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!
