This is a web-frontend for PAL.
For this frontend to work, you will need an installation of PAL first. You can get it from https://github.com/johannessimon/pal .
Here's how to get it running:
mkdir pal-installation && cd pal-installation
git clone https://github.com/johannessimon/pal.git
git clone https://github.com/johannessimon/pal-server.git
cd pal && mvn install -DskipTests
cd ../pal-server && mvn package -DskipTests
export WNHOME=/path/to/wordnet/3.1/
cp target/pal-server.war /path/to/webapps
To read logging output generated by PAL, e.g. for troubleshooting, you may specify a log4j configuration file by adding e.g. -Dlog4j.configuration=$PWD/src/main/resources/log4j.properties to the Java VM arguments from the git-server checkout directory.
Also, you will need to specify the configuration directory of PAL containing the sparql_endpoints/ directory using -Dconfig.home=$PWD/src/main/resources/.
Then start your web server if you haven’t already done so, or restart if it does not support hot-deployment of the war file.