This README would normally document whatever steps are necessary to get the application up and running.
- Go to http://www.omdbapi.com/ and obtain a new API KEY (http://www.omdbapi.com/apikey.aspx)
- Copy the file .env.example from the repository to .env
- Edit .env and replace [YOUR-OMDB-API-KEY] with the API KEY you obtained from omdbapi.com
- Run bundle install
- Run rake db:migrate, development version will run using sqlite3 (make sure you have this installed, should be installed by default on most Mac environments)
- Run
rails server
(or userrails server -p PORT
for a different port - Navigate to http://localhost:3000 in your browser (use the port you used above)