Aard2 for Web is a minimalistic web UI to look up words and browse content of dictionaries in slob format.
Aard2 for Web requires Java 1.7 or newer and a modern browser such as Chrome or Firefox.
To start the application, run
java -Dslobber.browse=true -jar aard2-web-0.8.jar ~/Downloads/*.slob
(assuming you have some slob files in ~/Downloads directory). This should open Aard2 web UI page (http://localhost:8013) in the default system browser.
To start the web server on a different port, set system property slobber.port. For example, to start on port 8014:
java -jar -Dslobber.port=8014 -Dslobber.browse=true ~/Downloads/*.slob
To build:
# clone slobj and slobber sources
git clone https://github.com/itkach/slobj.git
git clone https://github.com/itkach/slobber.git
# clone this repo
git clone https://github.com/itkach/aard2-web
#build fat jar
cd aard2-web
./gradlew build