### Install Project Dependencies (Bash) Source: https://github.com/pmndrs/market/blob/main/README.md Installs all required project dependencies using Yarn. Ensure Yarn is installed on your system before running this command. ```bash yarn ``` -------------------------------- ### Navigate to Project Directory (Bash) Source: https://github.com/pmndrs/market/blob/main/README.md Changes the current directory in the terminal to the cloned Market project directory. This is necessary before installing dependencies or starting the server. ```bash cd market ``` -------------------------------- ### Start Development Server (Bash) Source: https://github.com/pmndrs/market/blob/main/README.md Starts the local development server for the Market project using Yarn. This command typically compiles the code and serves the application for local testing. ```bash yarn dev ``` -------------------------------- ### Install and Generate Lighthouse Badges (Shell) Source: https://github.com/pmndrs/market/blob/main/public/img/scores/lighthouse.md This command first installs the 'lighthouse-badges' package globally using npm. The '&&' operator ensures that the second command runs only if the installation is successful. The second command 'lighthouse-badges' is then executed, targeting the URL 'http://r3f-next-starter.vercel.app/' using the '--urls' flag and saving the generated badges to the 'public/img/scores' directory using the '-o' flag. ```Shell npm install -g lighthouse-badges && lighthouse-badges --urls http://r3f-next-starter.vercel.app/ -o public/img/scores ``` -------------------------------- ### Clone Market Repository (Bash) Source: https://github.com/pmndrs/market/blob/main/README.md Clones the Market project repository from GitHub to your local machine. This is the first step to setting up the project locally. ```bash git clone https://github.com/pmndrs/market ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.