mirror of
				https://github.com/gitbucket/gitbucket.git
				synced 2025-10-30 18:15:59 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			507 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			507 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| 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!
 |