If you want to test GitBucket, input following command at the root directory of the source tree.
C:\gitbucket> sbt ~container:start
Then access to http://localhost:8080/ by your browser. The default administrator account is root and password is root.
If you want to modify source code and confirm it, you can run GitBucket in auto reloading mode as following:
Windows:
C:\gitbucket> sbt ... > container:start ... > ~ ;copy-resources;aux-compile
Linux:
~/gitbucket$ ./sbt.sh ... > container:start ... > ~ ;copy-resources;aux-compile
To build war file, run the following command:
Windows:
C:\gitbucket> sbt package
Linux:
~/gitbucket$ ./sbt.sh package
gitbucket_2.11-x.x.x.war is generated into target/scala-2.11.
To build executable war file, run
./release/make-release-war.shat the top of the source tree. It generates executable gitbucket.war into target/scala-2.11. We release this war file as release artifact.