Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maxdemarzi/neo_graph_search

A POC at replicating Facebook Graph Search with Cypher and Neo4j
https://github.com/maxdemarzi/neo_graph_search

Last synced: about 2 months ago
JSON representation

A POC at replicating Facebook Graph Search with Cypher and Neo4j

Awesome Lists containing this project

README

        

neo_graph_search
================

A POC at replicating Facebook Graph Search with Cypher and Neo4j

Pre-Requisites
--------------

* You will need to get a Facebook Consumer Key and Secret on https://developers.facebook.com/apps
* Select the "user_likes", "user_location", "friends_likes", "friends_location" permissions.
* Under "Select how your app integrates with Facebook" click "Website with Facebook Login" and fill in "http://localhost:5000/"
* You will need Neo4j in order for your database.
* You will need Redis in order to use Sidekiq for background jobs.

Installation
----------------

git clone [email protected]:maxdemarzi/neo_graph_search.git
bundle install (run gem install bundler if you don't have bundler installed)
sudo apt-get install redis-server or brew install redis or install redis manually
rake neo4j:install['enterprise','1.9.M04']
rake neo4j:start
rake neo4j:create
export SESSION_SECRET= (anything will do, or skip it)
export FACEBOOK_APP_ID=
export FACEBOOK_SECRET=
export REDISTOGO_URL="redis://127.0.0.1:6379/"
foreman start

On Heroku
---------

git clone [email protected]:maxdemarzi/neosocial.git
heroku apps:create neosocial
heroku config:add SESSION_SECRET=
heroku config:add FACEBOOK_APP_ID=
heroku config:add FACEBOOK_SECRET=
heroku addons:add neo4j
heroku addons:add redistogo
git push heroku master
heroku ps:scale worker=1
heroku run rake neo4j:create

See it running live at http://neographsearch.maxdemarzi.com/