textToGraph
CLI which parses and delimintates text files by word, and then indexes into big-data graph DB.

Build it
Binary
go get -u github.com/dgoldstein1/textToGraph
Docker
docker build . -t dgoldstein1/wikipedia-path
Run it
docker-compose up -d
or with dependencies running locally
export GRAPH_DB_ENDPOINT="http://localhost:8443/services/biggraph" # endpoint of graph database
export TWO_WAY_KV_ENDPOINT="http://localhost:8443/services/twowaykv" # endpoint of k:v <-> v:k
./textToGraph parse data/moby_dick.txt
Development
Local Development
./watch_dev_changes.sh
Testing
go test $(go list ./... | grep -v /vendor/)
Authors
License
This project is licensed under the MIT License - see the LICENSE.md file for details