Moovy its an application wherer you can add movies to you Watched List and keep track of what you've watched.
The app is composed by two parts:
- Front-end
- Back-end
And both need to be being executed fot the app to work properly.
To run the front-end part first you need to install all the dependencies that this part requires. To do so just run the following comands in your terminal at the root folder:
cd frontend
npm i
npm run startIt will install all tehe packages and start the front-end at the port 3001 of your computer.
To run the back-end part first you also need to install all the dependencies that this part requires. To do so just run the following comands in your terminal at the root folder:
cd backend
npm i
npm run startIt will install all tehe packages and start the back-end at the port 3000 of your computer.
Done that the app will be running with no problems.
To see all the API endpoints while your back-end application is running go to your browser and access http://localhost:3000/api. There you will be able to see al endpoints and DTO's that the API provides.