# Run project locally

### Install [expo](https://expo.dev/)

To install  Expo, you can follow their offical docs [here](https://docs.expo.dev/get-started/installation/).&#x20;

In general, if you have node installed, just run this.&#x20;

```
npm install --global expo-cli
```

### Install project node dependencies

Navigate to your project and run

```
yarn install
```

This will install all the needed node dependencies

### Run the project  locally

Execute

```
npx expo start
```

This will start local expo server, and you are ready to test the app on simulator, or on your device via Expo Go app.
