Skip to content

Instantly share code, notes, and snippets.

@olange
Last active August 27, 2015 22:57
Show Gist options
  • Save olange/9ff0be5a097082514473 to your computer and use it in GitHub Desktop.
Save olange/9ff0be5a097082514473 to your computer and use it in GitHub Desktop.
Compiling Neo4j Community on my Mac OS X

Resume of the build instructions found in the Neo4j project page on GitHub.

### Compiling

$ export MAVEN_OPTS="-Xmx512m"
$ cd neo4j/community/
$ mvn [clean] install -Dlicense.skip=true -DskipTests

Running the server

$ cd server
$ mvn clean compile exec:java
2015-08-28 00:35:15.719+0200 INFO  Successfully started database […]
2015-08-28 00:35:16.861+0200 INFO  Remote interface ready and available at http://0.0.0.0:7474/

Running the Graphviz generator

$ cd graphviz
$ ./graphviz --help

Prerequisites

$ git clone [email protected]:neo4j/neo4j.git
$ brew install|upgrade graphviz libtool maven node.js
$ npm install grunt-cli

See also

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment