Skip to content

Instantly share code, notes, and snippets.

View AO-StreetArt's full-sized avatar

AO Productions AO-StreetArt

View GitHub Profile
@AO-StreetArt
AO-StreetArt / cluster_test.cpp
Created August 17, 2018 22:36
Libneo4j-client - Viewing Cluster Nodes
#include <neo4j-client.h>
#include <errno.h>
#include <stdio.h>
int main(int argc, char *argv[]) {
//Pull the connection string
char *connection_string;
if (argc > 1) {
connection_string = argv[1];
} else {
@AO-StreetArt
AO-StreetArt / docker-compose.yml
Created August 17, 2018 22:33
Docker Compose - Neo4j Causal Cluster
version: '3'
services:
core1:
image: neo4j:3.4-enterprise
ports:
- "7474:7474"
- "7687:7687"
environment:
- NEO4J_ACCEPT_LICENSE_AGREEMENT=yes