Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Latest commit

 

History

History
19 lines (15 loc) · 576 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 576 Bytes

CRM data conversion service

Microservice containing scripts to convert data from an MS SQL to triples.

The service must be executed ad-hoc and generates Turtle files which can be loaded as migrations in the application.

Getting started

Adding the service to your stack

Add the following snippet to your docker-compose.yml to include the conversion service in your project.

services:
  data-conversion:
    image: rollvolet/crm-data-conversion-service
    environment:
      SQL_PASSWORD: "secretPassword"
    volumes:
      - ./data/conversion:/data