Newer
Older
gitbucket_jkp / help.txt

gitbucket-src
	directory is the source cloned from github

Jetty help:
	https://www.jrebel.com/blog/jetty-server

Downloaded the latest gitbucket.war from my server to get a basic gitbucket started using Jetty.

Unpacking the war file in the gitbucket-from-src directory was picked up by jetty immediately.
	jar -xf gitbucket.war 
	available at:
		http://localhost:8080/gitbucket-from-src/
	
Hacking the source
------------------	
	The following shows files in the main gitbucket jar:
		unzip -l WEB-INF/lib/gitbucket_2.13-4.41.0.jar | grep view
	
	which were also located at:
		/opt/gitbucket-from-src/gitbucket-src/src/main/scala/gitbucket/core/view/
	
	So I installed scala
	apt-get install scala
	
	and create a classes directory to try and compile into:
	/opt/gitbucket-from-src/gitbucket-src/classes
	but it was not clear how to include javax dependencies amoung other things.
	So I decided instead to use the build.sbt file.
	
	Installed sbt (https://www.scala-sbt.org/download)
	Ran sbt in the directory and it immediately did some shit. No idea what.
	To compile, type compile
		compiled into gitbucket-src/target/scala-2.13
	
	Some help:	
		https://www.scala-sbt.org/1.x/docs/sbt-by-example.html
		

Build WAR
---------

	https://github.com/gitbucket/gitbucket/blob/master/doc/build.md
	Since I've been forced to install all of their dev crap.
	sbt doesn't work properly, might be a class file version issue but both war files build ok
	
	Found out eventually that the following item should be added to web.xml for the home directory to be picked up
	since we cannot set app specific items any other way. This is because jetty is started as a server to support
	multiple apps.
	
	<!-- https://stackoverflow.com/questions/28392888/init-param-and-context-param -->
	<context-param>
		<param-name>gitbucket.home</param-name>
		<param-value>/opt/gitbucket-from-src</param-value>
	</context-param>
	

27-08-24___________


	After downloading the source, build with:
		sbt executable
		
	find the war file in target/executable
	
	(If running in a multi-webapp environment, makes sure to be running with my changes as noted above.)
	
	Other than that, the latest git-pull is actually runctioning correctly using the gitbucket-home parameter:
	
	/usr/bin/java -jar /opt/gitbucket/gitbucket.war --host=0.0.0.0 --port=8080 --gitbucket.home=/opt/gitbucket

	They must have fixed it since verion 4.41.0 which was built May 24.
	
    Checked into my repository at http://pearcey.net:8080/johnpearcey/gitbucket_jkp