Skip to content

Latest commit

 

History

History
80 lines (63 loc) · 3.37 KB

README.md

File metadata and controls

80 lines (63 loc) · 3.37 KB

Contributors Forks Stargazers Issues LinkedIn


Logo

Netflix API

This project consists of an API capable of reading a .csv file (netflix_titles.csv), populating the database with the information from the file, and also capable of displaying the records in JSON format. The read file consists of a list of Netflix movies and series.


· Report Bug · Request Feature

Project Requirements ☑️

● Endpoint capable of reading a .csv file and populating the database with the file's information;

● The .csv file reading should be done through a different endpoint than the title listing;

● It should be possible to filter records by release year, genre, and country;

API Documentation (Postman) ruby

Link

Technologies:

  • Ruby 3.0.2
  • Rails 7.0.4.3
  • SQLite3

Installation

  1. Clone this repository
    git clone https://github.com/joaogdfaero/Netflix_API.git

  2. Navigate to the project folder
    cd Netflix_API

  3. Install the necessary gems
    bundle

  4. Run the application server
    rails s

  5. The server will start on port: 3000 - access:
    http://localhost:3000


Author: João Gabriel Dal Forno (joao.dal@acad.ufsm.br)

(Back to top)