Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maxdemarzi/neoflix
https://github.com/maxdemarzi/neoflix
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/maxdemarzi/neoflix
- Owner: maxdemarzi
- License: mit
- Created: 2012-01-07T09:12:43.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-08-15T23:27:01.000Z (about 11 years ago)
- Last Synced: 2024-10-03T12:24:03.334Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 5.88 MB
- Stars: 43
- Watchers: 8
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.rdoc
- License: LICENSE.txt
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.
rackupDeployment (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 graphSee 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