This is the working Git repository for the Komodo WebUi project.
This project contains the Komodo WebUi based on the Uberfire framework
The easiest way to get started with the code is to create your own fork of this repository, and then clone your fork:
$ git clone [email protected]:<you>/komodo-web.git
$ cd komodo-web
$ git remote add upstream git://github.com/mdrillin/komodo-web.git
At any time, you can pull changes from the upstream and merge them onto your master:
$ git checkout master # switches to the 'master' branch
$ git pull upstream master # fetches all 'upstream' changes and merges 'upstream/master' onto your 'master' branch
$ git push origin # pushes all the updates to your fork, which should be in-sync with 'upstream'
The general idea is to keep your 'master' branch in-sync with the 'upstream/master'.
We use Maven 3.x to build our software. The following command compiles all the code, installs the JARs into your local Maven repository, and runs all of the unit tests:
$ mvn clean install -s settings.xml
$ cd komodoweb-webapp
$ mvn gwt:run
Login
admin / admin
komodo-web is open source, and we welcome anybody who wants to participate and contribute!