A tool for tracking the relationships between people, groups, places and more.
You need Oracle's Java 7 runtime environment to use this tool.
This app uses the latest 2.0 version of neo4j. You can download that directly at:
This is currently just a collection of scripts to populate neo4j. You should copy the data in data/shabaab.cypher and paste it into the neo4j 'power console' in its web admin to start.
cat data/shabaab.cypher | pbcopy
open http://localhost:7474/webadmin/#/console/
Paste in the console, hit enter. You should see something like the following response:
==> +-------------------+
==> | No data returned. |
==> +-------------------+
==> Nodes created: 9
==> Relationships created: 9
==> Properties set: 29
==> Labels added: 9
==> 197 ms
neo4j-sh (0)$
You can select all nodes in the db with the following query in the data browser:
START n=node(*) // Start with all nodes
RETURN n // and return them.
// Hit CTRL+ENTER to execute
To run the very much a work-in-progress admin application (it's sinatra):
rackup config.ru
## or ##
shotgun config.ru