Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/maxdemarzi/neoflix


https://github.com/maxdemarzi/neoflix

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

== Neoflix Movie Recommender

An implementation of a graph based movie recommender engine by Marko Rodriguez.

http://markorodriguez.com/2011/09/22/a-graph-based-movie-recommender-engine

Demo http://neoflix.herokuapp.com

Deployment (Local):

git clone [email protected]:maxdemarzi/neoflix.git
cd neoflix
bundle install
rake neo4j:install
rake neo4j:start
rake neo4j:create # This will create the graph
export TMDB_KEY=YOUR_TMDB_KEY # See blog posts for how to get one.
rackup

Deployment (Heroku):

git clone [email protected]:maxdemarzi/neoflix.git
cd neoflix
bundle install
heroku apps:create neoflix --stack cedar
heroku addons:add neo4j
heroku config:add TMDB_KEY=YOUR_TMDB_KEY # See blog posts
git push heroku master
heroku run rake neo4j:create # This will create the graph

See Blog posts for more information:

http://maxdemarzi.com/2012/01/13/neo4j-on-heroku-part-one

http://maxdemarzi.com/2012/01/16/neo4j-on-heroku-part-two

http://maxdemarzi.com/2012/01/18/neo4j-on-heroku-part-three