Ensure you have the latest stable versions of Node.js and npm installed on your machine. For version management, we recommend using nvm (macOS/Linux) or nvm-windows.
Navigate to the project folder and install its dependencies. You can use Yarn or npm. Here's how to install using npm:
1cd project-folder
2npm install
After the installation, start your app by running the following command:
1npm run dev
This will start the development server, and you should see output similar to:
1next ▲ Next.js 14.0.4 - Local: http://localhost:3000
2✓ Ready in 2.7s
3○ Compiling /404 ...
4✓ Compiled /404 in 2s (3157 modules)
5⚠ Fast Refresh had to perform a full reload. Read more: https://nextjs.org/docs/messages/fast-refresh-reload
Visit http://localhost:3000 to view the app in your browser. The page will reload if you make edits. If you encounter any errors, they will be shown in the console.
ESLint is configured for the project, assisting with code quality and styling guidelines.