-
Application on the theme of movies making use of the Client and Server method, where the server provides us with an api developed with NodeJs and MongoDB that will be consumed by the Client which is developed with NextJs and React technology.
-
We must have Npm and NodeJs installed, optionally and for ease when executing our application, Docker and docker-compose could be installed with which we will encapsulate our server within virtual containers.
.
├── client
│ ├── components
│ │ ├── alert
│ │ ├── button
│ │ ├── container
│ │ ├── layout
│ │ ├── movie
│ │ ├── navbar
│ │ └── pageTitle
│ ├── config
│ ├── pages
│ │ ├── api
│ │ ├── auth
│ │ └── movies
│ ├── public
│ ├── redux
│ │ ├── actions
│ │ └── reducers
│ └── styles
└── server
├── node_modules
└── src
├── config
├── controller
├── middlewares
├── models
└── routes
-
Within each directory (Client or Server) there are their respective README.md where it is clearly oriented how to execute or make correct use of each of the services offered.