Nodejs 18+ and NPM
First clone the project use NPM ( in my case ) to install the project
git clone https://github.com/tuon1602/nextjs14-boilerplate.git "Your app name"
cd "Your app name"
npm install
npm run dev
I'm currently using docker for building, so you need to install docker app first then use these commands
docker build -t "Your app name" .
docker run -p 3000:3000 "Your app name"