Skip to content

Commit

Permalink
Update Neo4j installation instructions.
Browse files Browse the repository at this point in the history
  • Loading branch information
aseemk committed Apr 17, 2013
1 parent a31d582 commit d857aa6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
/node_modules/
.DS_Store

node_modules/
npm-debug.log

/neo4j-*
/neo4j
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,18 @@ creating your own Node-Neo4j app. Enjoy!
npm install

# Install a local Neo4j instance
curl "http://dist.neo4j.org/neo4j-community-1.6-unix.tar.gz" --O "db-unix.tar.gz"
tar -zxvf db-unix.tar.gz 2> /dev/null
rm db-unix.tar.gz
curl http://dist.neo4j.org/neo4j-community-1.8.2-unix.tar.gz --O neo4j-community-1.8.2-unix.tar.gz
tar -zxvf neo4j-community-1.8.2-unix.tar.gz
rm neo4j-community-1.8.2-unix.tar.gz
ln -s neo4j-community-1.8.2/bin/neo4j neo4j
```


## Usage

```bash
# Start the local Neo4j instance
neo4j-community-1.6/bin/neo4j start
./neo4j start

# Run the app!
npm start
Expand Down

0 comments on commit d857aa6

Please sign in to comment.