If you just want to run RHAMT Web Console, not build or modify it, the simplest way is to use the docker image at https://hub.docker.com/r/windup3/windup-web_nightly/.
If you want to build RHAMT Web Console yourself and run it without setting up a WildFly server and Keycloak, you can build windup-web-distribution after building windup-web to create a self-contained distribution.
- JDK 8
- Maven 3.2.5+ (3.3.x recommended)
-
Set your local Maven
setting.xml
by copying filesettings.xml
from checked out sources into$HOME/.m2/
or use it directly while calling maven with option-s settings.xml
-
Install NodeJS Package Manager (npm)
- Debian/Ubuntu:
sudo apt-get install npm
- RHEL 7: 1) Install EPEL 2)
sudo yum install npm
NOTE: If npm is version is less than 3.8.8, try the following to force an update:
sudo npm install -g npm
- Debian/Ubuntu:
-
sudo npm install -g yarn
Note: Check that your installed version of yarn is at least v0.22.0 (yarn --version)
-
sudo npm install -g bower
- If you run into problems with permissions (typically EACCES error), use this guide to fix it.
npm install
command should be replaceable withyarn add
.- For global packages, use
sudo yarn global add
. Yarn should be faster, but if there is any problem with it, use NPM. Here is nice comparison of npm and yarn commands.
-
Get current version of phantomjs
if phantomjs is not installed yet, run
sudo npm install -g phantomjs-prebuilt
else run
sudo npm update -g phantomjs-prebuilt
-
For development purpose and regular redeployment, raise the Metaspace limit. In
wildfly-10.1.0.Final/bin/standalone.conf
, change theMaxMetaspaceSize
value to 2048:JAVA_OPTS="-Xms64m -Xmx512m -XX:MetaspaceSize=96M -XX:MaxMetaspaceSize=2048m -Djava.net.preferIPv4Stack=true"
To build Windup, you need to clone and build several git repositories:
If you want to contribute to Windup development, here is a script which clones the repositories, adds the upstream and sets up the remote tracking branches. First, you'll need to fork all the repositories to your user account. Then, change your GitHub.com user name in the script below.
GITHUB_USER="OndraZizka"
BASEDIR=$(pwd)
for i in \
windup \
windup-rulesets \
windup-quickstarts \
windup-distribution \
maven-indexer \
windup-maven-plugin \
; do
cd $BASEDIR
git clone git@github.com:$GITHUB_USER/$i.git
cd $i
git remote add upstream https://github.com/windup/$i.git
git fetch upstream
git branch --set-upstream-to=upstream/master
git pull
mvn clean install -DskipTests
done
cd $BASEDIR
# Install NodeJS 6+
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
# Install NPM
sudo apt-get install npm
sudo npm install -g npm
#sudo apt install yarn
sudo npm install -g yarn
sudo npm install -g bower
sudo npm install -g phantomjs-prebuilt
## Then fix NPM permissions, basically by downloading and installing it just for one user…
## https://docs.npmjs.com/getting-started/fixing-npm-permissions
BASEDIR=$(pwd)
for i in \
windup-keycloak-tool \
windup-web \
windup-web-distribution \
; do
cd $BASEDIR
git clone git@github.com:$GITHUB_USER/$i.git
cd $i
git remote add upstream https://github.com/windup/$i.git
git fetch upstream
git branch --set-upstream-to=upstream/master
git pull
mvn clean install -DskipTests
done
cd $BASEDIR
-
Build:
mvn clean install -DskipTests
-
Wildfly/EAP 7 must be run with
-c standalone-full.xml
as Messaging subsystem is required. -
Execute the CLI script at: scripts/eap-setup.cli on Wildfly/EAP 7
bin/jboss-cli.sh -c --file=scripts/eap-setup.cli
-
Deploy the exploded
services/target/rhamt-web/api
andui/target/rhamt-web
to EAP 7.There are 3 possible ways how to do it.
-
Manual copying:
cp -r services/target/rhamt-web/api ~/apps/wildfly-10.1.0.Final/standalone/deployments/rhamt-web/api.war; touch ~/apps/wildfly-10.1.0.Final/standalone/deployments/rmaht-web/api.war.dodeploy; cp -r ui/target/rhamt-web ~/apps/wildfly-10.1.0.Final/standalone/deployments/rhamt-web.war; touch ~/apps/wildfly-10.1.0.Final/standalone/deployments/rhamt-web.war.dodeploy;
or
-
JBoss CLI deployment, deploy the
target
directory directly - see WildFly docs:deploy services/target/rhamt-web/api --unmanaged; deploy ui/target/rhamt-web --unmanaged;
or
-
Editing profile configuration and adding the following block to
standalone-full.xml
under<server>
, at the end of the file:<deployments> <deployment name="rhamt-web/api" runtime-name="rhamt-web/api.war"> <fs-exploded path=".../windup-web/services/target/rhamt-web/api"/> </deployment> <deployment name="rhamt-web" runtime-name="rhamt-web.war"> <fs-exploded path=".../windup-web/ui/target/rhamt-web"/> </deployment> </deployments>
Note: Replace ... with real absolute path on your local environment.
-
-
Follow the steps for deploying keycloak in Keycloak Setup
-
Access the webapp: http://localhost:8080/rhamt-web