Skip to content

Commit

Permalink
Merge branch 'dev' into fix-context-menu-on-storage
Browse files Browse the repository at this point in the history
  • Loading branch information
stavares843 authored Nov 30, 2024
2 parents ebd2c44 + 986934f commit 0617c49
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,24 @@ npm run dev

`npx cap open ios`

### Live Reload for Mobile Development

1. Update the port to 3000 in the `vite.config.js` file, as Capacitor commands require this port.

2. Build the mobile app for Android or iOS with live reload enabled by running:

```
npx cap run android -l --external
```

or

```
npx cap run ios -l --external
```

3. Select your device in the terminal and wait for the app to build.

## Contributing

All contributions are welcome! Please keep in mind we're still a relatively small team, and any work done to ensure contributions don't cause bugs or issues in the application is much appreciated.
Expand Down
2 changes: 1 addition & 1 deletion src/lib/state/wasm/relays.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Store {
this.state = createPersistentState("uplink.wasm.relays", {
// Default Relay addresses taken from warp RelayClient
"Default US_NYC-1": {
address: "/dns4/nyc-3-dev.relay.satellite.im/tcp/4410/wss/p2p/12D3KooWKmRupXFyBqJtm6FAySPe6Krmi6v5i6SsQ96NMZ9J4Nns",
address: "/dns4/nyc-3-dev.relay.satellite.im/tcp/4410/wss/p2p/12D3KooWJWw4KG2KKpUxQAc8kZZDqmownRvjWGxnr5Y6XRur8WSx",
active: true,
default: true,
},
Expand Down

0 comments on commit 0617c49

Please sign in to comment.