GET /movie/:movie_id
GET /movie/:movie_id/translations
First you need to install the dependencies:
## Yarn
yarn install
## NPM
npm install
You need a .env
file with the following tags:
API_KEY=${API Key for the TheMovieDB API}
MONGO_USERNAME=${MongoDB username}
MONGO_PASSWORD=${MongoDB password}
MONGO_HOSTNAME=${MongoDB hostname}
MONGO_DB=${MongoDB database}
PORT=3000
After you configure the .env
you can run the docker-compose
command.
docker-compose up -d
.
This will create two docker instances, one for the node api and the other for the mongodb instance.
Run yarn test