This is a release of WebOWL + OWL2VOWL for https://schema.gov.it where dependencies are updated and the CI includes further checks.
This repository was ported from an internal SVN repository to Github after the release of WebVOWL 0.4.0. Due to cleanups with git filter-branch
, the commit history might show some strange effects.
Node.js for installing the development tools and dependencies.
- Download and install Node.js from http://nodejs.org/download/
- Open the terminal in the root directory
- Run
npm install
to install the dependencies and build the project - Edit the code
- Run
npm run build
to (re-)build all necessary files into the deploy directory - Run
serve deploy/
to run the server locally, by installing serve by usingnpm install serve -g
.
Visit http://localhost:3000 to use WebVOWL.
npm run build
builds the development version into the deploy directorynpm run watch
Run webpack and watch for files changes.To check the progress of any webpack.npm run start
starts a local live-updating webserver with the current development versionnpm run test
starts the test runnernpm run owasp
test all vulnerability with owasp
To export the VOWL visualization to an SVG image, all css styles have to be included into the SVG code.
This means that if you change the CSS code in the vowl.css
file, you also have to update the code that
inlines the styles - otherwise the exported SVG will not look the same as the displayed graph.
The tool which creates the code that inlines the styles can be found in the util directory. Please follow the instructions in its README file.
Owl2Vowl is an ontology converter used to convert the given ontology to a json format that is used in the WebVOWL visualization.
- Java 11 (or higher)
- Gradle
To build the war file, simply execute ./gradlew clean build
. This will generate a war file.
Make sure you are inside root directory and you have docker installed. Run the following command to build the docker image:
docker compose build
Run the following command to run WebVOWL at port 8080.
docker-compose up -d
Visit http://localhost:8080 to use WebVOWL.