First need to create an existing app, which uses the apache configuration
```
git checkout master
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
# Should be able to do normal iOS Dev workflow:
# No "DISCONNECTED" bar appears, able to create chat threads
# Profile > Developer tools, should show http://localhost/comm
```
{F290268}
Next, we need apply url-utils changes:
```
arc patch D5846
# Keyserver should apply the migration, but still needs to restart for routing changes
# restart `yarn dev` in `keyserver/`
# App should update to new defaultURL without intervention, but to start it again
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
# Profile > Developer tools, should show http://localhost:3000/comm
```
{F290313}