```
nix develop # optional, if legacy dev env already applied
# In one terminal
cd keyserver
yarn dev
# In another terminal
cd native
yarn dev
# Run follwoing command in another terminal
yarn react-native run-ios --simulator='iPhone 14 Pro' --configuration=Debug
# Go to home screen, and delete existing app in simulator (Hold down on Comm app, then select "Remove App"); to ensure configuration was re-applied next clean start
# Do ctrl+c to stop previous `yarn react-native run-ios`
yarn react-native run-ios --simulator='iPhone 14 Pro' --configuration=Debug
# Should be able to do normal iOS Dev workflow:
# No "DISCONNECTED" bar appears, able to create chat threads
```