A basic API for Mediashow's technical test. Note that this API is not linked to any database, the datas are not persistent.
Run this to build the docker image
$ docker build -t movie-list .Then run this to run the docker image
$ docker run -p 3000:3000 movie-listOnce it runs, the API is exposed on localhost:3000
Two requests are available :
GET /movies to retrieve the list of movies.
PATCH /movies/:id (where the parameter id must be the id of a movie) to toggle the value of like in the corresponding movie.