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
● 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;
- Ruby 3.0.2
- Rails 7.0.4.3
- SQLite3
-
Clone this repository
git clone https://github.com/joaogdfaero/Netflix_API.git
-
Navigate to the project folder
cd Netflix_API
-
Install the necessary gems
bundle
-
Run the application server
rails s
-
The server will start on port: 3000 - access:
http://localhost:3000
Author: João Gabriel Dal Forno (joao.dal@acad.ufsm.br)