Skip to content

Instantly share code, notes, and snippets.

@designermonkey
Last active December 25, 2015 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save designermonkey/7013662 to your computer and use it in GitHub Desktop.
Save designermonkey/7013662 to your computer and use it in GitHub Desktop.
require 'formula'
class Neo4j < Formula
homepage 'http://neo4j.org'
url 'http://dist.neo4j.org/neo4j-community-2.0.0-M06-unix.tar.gz'
version 'community-2.0.0.M06-unix'
md5 'fb57c0daae42c2212984e2d97669b36d'
def install
# Remove windows files
rm_f Dir["bin/*.bat"]
# Fix the permissions on the global settings file.
chmod 0644, Dir["config"]
# Install jars in libexec to avoid conflicts
libexec.install Dir['*']
# Symlink binaries
bin.install_symlink Dir["#{libexec}/bin/neo4j{,-shell}"]
end
def caveats; <<-EOS.undent
Quick-start guide:
1. Start the server manually:
neo4j start
2. Open webadmin:
open http://localhost:7474/webadmin/
3. Start exploring the REST API:
curl -v http://localhost:7474/db/data/
4. Stop:
neo4j stop
To launch on startup, install launchd-agent to ~/Library/LaunchAgents/ with:
neo4j install
If this is an upgrade, see:
#{libexec}/UPGRADE.txt
The manual can be found in:
#{libexec}/doc/
EOS
end
end
@designermonkey
Copy link
Author

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