Skip to content

Latest commit

 

History

History
54 lines (45 loc) · 1.97 KB

File metadata and controls

54 lines (45 loc) · 1.97 KB

NEXTJS_MERN_STACK_REDUX_DB_MOVIES

Twitter

  • 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.

Technologies

  • 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.

Folder structure

.
├── 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.

License