Running The Frontend
Once you have downloaded the frontend source code, you'll need to unzip the directory and navigate to it in a command prompt or a terminal.
If you haven't already you can download the frontend source code from the "Project Source Code" lesson in module 1.
Installing Dependencies
To install the dependencies for the project run:
npm installRun the Frontend
To run the frontend, run the following:
npm run devThis will start the Nextjs development server, with the app available on http://localhost:3000.
Summary
- Downloaded the frontend source code
- Installed the frontend dependencies with
npm install - Ran the frontend project with
npm run dev