How to run and test the code

Using Docker

docker build -t nextjs-docker .
  • Run your container:
docker run -p 3000:3000 nextjs-docker

Running Locally

  • Install the dependencies:
npm ci
  • Run the development server:
npm run dev

Open http://localhost:3000 with your browser to see the result.

Screenshot

Three Blog Posts