Tab2KGwiz is a Java Spring Boot application designed to transform tabular data into structured knowledge graphs (KGs). The tool leverages a robust Spring Boot backend to process and convert tabular data into RDF format.
Clone the repository to your local machine:
git clone https://github.com/Tab2KGWiz/tab2kgwiz-api.git
cd tab2kgwiz
mvn clean install
This will download the necessary dependencies and compile the project.
mvn spring-boot:run
Once the application is running, you can access it at http://localhost:8080.
The project comes with a Dockerfile for containerizing the application.
To build the Docker image, run the following command:
docker build -t backend .
This will create a Docker image tagged backend.
To run the application inside a Docker container, use the following command:
docker run -p 3000:3000 -it backend
Now, the application will be accessible at http://localhost:8080.
You can configure application settings in the application.properties file located in src/main/resources.
This project is licensed under the GNU General Public License v3.0.