A simple webapp to manage your movie collection
Go to file
Guillaume Dott 3a969d5344 Add more methods to manage movies through API 2019-06-28 12:54:44 +02:00
db/migrations Add more methods to manage movies through API 2019-06-28 12:54:44 +02:00
lib Add more methods to manage movies through API 2019-06-28 12:54:44 +02:00
.gitignore Add /vendor/bundle in .gitignore 2019-06-13 12:18:00 +02:00
Gemfile Create gem 2015-10-20 12:45:31 +02:00
LICENSE.txt Create gem 2015-10-20 12:45:31 +02:00
README.md Add README 2015-10-23 12:27:28 +02:00
Rakefile Create gem 2015-10-20 12:45:31 +02:00
librarix.gemspec Remove views and replace redis with sequel 2019-06-28 12:38:52 +02:00

README.md

Librarix

Manage all your collections in your browser and automatically fetch infos from TheMovieDB

Installation

Librarix is a simple Sinatra app that can be used as a standalone app or mounted in another app.

Standalone

Create a Gemfile and add this line:

gem 'librarix'

And then execute:

$ bundle

Finally, you need a config.ru file to launch the Rack application:

require 'librarix'

Tmdb::Api.key('THE_MOVIE_DB_API_KEY')
Librarix.redis = Redis.new # use the correct host, port and db number for your redis database

run Librarix::Application