Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmcp89/siren-er-quick-start
Quick start repo for Entity resolution walkthrough
https://github.com/dmcp89/siren-er-quick-start
Last synced: about 10 hours ago
JSON representation
Quick start repo for Entity resolution walkthrough
- Host: GitHub
- URL: https://github.com/dmcp89/siren-er-quick-start
- Owner: DMcP89
- Created: 2023-07-19T14:56:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-26T17:37:49.000Z (over 1 year ago)
- Last Synced: 2024-05-01T15:26:13.162Z (9 months ago)
- Size: 932 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Siren ER Quick Start
This repository can be used to quickly setup all the neccesary components to complete the [Getting Started with Siren ER](https://docs.siren.io/siren-er/2.0.0/siren-er/siren-er-getting-started.html) walkthrough.
## Prerequisites
* Docker
* Docker-Compose
* Git## Make it go
1. Clone this repository
```
git clone https://github.com/DMcP89/siren-er-quick-start.git
cd siren-er-quick-start
```
2. Run docker compose
```
docker-compose up -d
```## Running with a license
1. uncomment the following lines in the .env file
```
SENZING_ENGINE_CONFIGURATION_JSON='{
"PIPELINE" : {
"CONFIGPATH" : "/etc/opt/senzing",
"RESOURCEPATH" : "/opt/senzing/g2/resources",
"SUPPORTPATH" : "/opt/senzing/data",
"LICENSEFILE" : "/opt/senzing/g2/g2.lic"
},
"SQL" : { "CONNECTION" : "postgresql://G2:[email protected]:5432:G2" }
}'
```2. create the g2 directory under senzing_volume
```
mkdir senzing_volume/g2
```3. copy your license file to the g2 directory
```
cp g2.lic senzing_volume/g2/g2.lic
```4. Run docker compose
```
docker-compose up -d
```