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
- Host: GitHub
- URL: https://github.com/roosoft/graph_database
- Owner: RooSoft
- Created: 2021-11-10T16:24:49.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-11T19:46:57.000Z (over 4 years ago)
- Last Synced: 2025-10-21T07:35:28.329Z (9 months ago)
- Language: Elixir
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```