### Install Dependencies using Yarn Source: https://github.com/cardanoapi/mempool-explorer/blob/main/server/README.md Executes the Yarn package manager to install all project dependencies listed in the package.json file. ```Shell yarn install ``` -------------------------------- ### Start Development Server with Yarn Source: https://github.com/cardanoapi/mempool-explorer/blob/main/server/README.md Initiates the application's development server by running the 'dev' script defined in the package.json file via Yarn. ```Shell yarn run dev ``` -------------------------------- ### Generate Prisma Client Source: https://github.com/cardanoapi/mempool-explorer/blob/main/server/README.md Runs the Prisma generate command using npx to build the database client based on the project's schema, required for database interactions. ```Shell npx prisma generate ``` -------------------------------- ### Installing Project Dependencies with Yarn Source: https://github.com/cardanoapi/mempool-explorer/blob/main/client/README.md This command uses Yarn to install all required project dependencies listed in the package.json file. It must be run after cloning the repository. ```Shell yarn install ``` -------------------------------- ### Starting the Development Server with Yarn Source: https://github.com/cardanoapi/mempool-explorer/blob/main/client/README.md This command initiates the local development server for the Next.js application. It enables real-time monitoring and testing during development. ```Shell yarn run dev ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.