### Installing Project Dependencies - Bash Source: https://github.com/laurenweickert/whoop-postpartum-chat/blob/master/README.md This command installs all necessary project dependencies defined in the 'package.json' file. Users can choose between 'npm install' or 'yarn install' based on their preferred package manager. ```bash npm install # or yarn install ``` -------------------------------- ### Starting the Development Server - Bash Source: https://github.com/laurenweickert/whoop-postpartum-chat/blob/master/README.md This command starts the local development server for the React Native application using Expo. It allows developers to run and test the application on emulators or physical devices during development. ```bash npm run dev # or yarn dev ``` -------------------------------- ### Cloning the Repository - Bash Source: https://github.com/laurenweickert/whoop-postpartum-chat/blob/master/README.md This command clones the project repository from the specified URL and then navigates into the newly created project directory. It is the first step to obtain the project source code locally. ```bash git clone [repository-url] cd whoop-postpartum-chat ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.