This is a Next.js project bootstrapped with create-next-app.
The goal of this project is to demonstrate a Next.js app-router application, along with
Mocking APIs with msw (Mock Service Worker) package, authentication process, e2e testing with playwright,
And in a nutshell, an INFRASTRUCTURE project where most of the needed tools and utilities required for a modern
Next.js project is provided.
In order to run the project we need to run both backend and frontend of the project.
First install the packages in both server and Next.js root with:
yarn install
After that we will run the backend, while we are in the root of the project with this command:
yarn devServer
Then we will run the Next.js App in a new terminal with this command:
yarn dev
These will fire up the app in development mode.