An open API service indexing awesome lists of open source software.

https://github.com/roosoft/graph_database

CLI protype app interacting with a neo4j graph database
https://github.com/roosoft/graph_database

Last synced: 14 days ago
JSON representation

CLI protype app interacting with a neo4j graph database

Awesome Lists containing this project

README

          

# GraphDatabase

CLI protype app interacting with a [neo4j](https://neo4j.com) graph database

## Add configuration
Create a `config/config.exs` file with contents similar to thos

```elixir
use Mix.Config

config :bolt_sips, Bolt,
url: "bolt://localhost:7687",
basic_auth: [username: "neo4j", password: "test"],
ssl: false
```

## How to compile
```bash
mix escript.build
```

## How to run
```bash
./graph_database
```