doc: update urls

This commit is contained in:
fryorcraken.eth 2022-09-22 18:05:01 +10:00
parent 15dffc8ada
commit 7b58a69122
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
8 changed files with 28 additions and 32 deletions

View File

@ -18,15 +18,13 @@ only knowing their Ethereum Address.
This protocol has been created to demonstrated how encryption and signature could be added to message
sent over the Waku v2 network.
The `master` branch's HEAD is deployed at https://js-waku.wakuconnect.dev/examples/eth-pm/.
The `master` branch's HEAD is deployed at https://examples.waku.org/eth-pm/.
To run a development version locally, do:
```shell
git clone https://github.com/status-im/js-waku/ ; cd js-waku
npm install # Install dependencies for js-waku
npm run build # Build js-waku
cd examples/eth-pm
npm install # Install dependencies for the web app
npm run start # Start development server to serve the web app on http://localhost:3000/js-waku/eth-pm
git clone https://github.com/waku-org/js-waku-examples
cd eth-pm
npm install
npm run start
```

View File

@ -10,4 +10,4 @@ This example uses Waku Filter to listen to messages and Waku Light Push to send
To test the example, simply download the `index.html` file from this folder and open it in a browser.
The `master` branch's HEAD is deployed at https://js.waku.org/light-js/.
The `master` branch's HEAD is deployed at https://examples.waku.org/light-js/.

View File

@ -10,15 +10,15 @@
A barebones messaging app to illustrate the [Angular Relay guide](https://docs.wakuconnect.dev/docs/guides/10_angular_relay/).
The `master` branch's HEAD is deployed at https://examples.waku.org/relay-angular-chat/.
To run a development version locally, do:
```shell
git clone https://github.com/status-im/js-waku/ ; cd js-waku
npm install # Install dependencies for js-waku
npm run build # Build js-waku
cd examples/relay-reactjs-chat
yarn # Install dependencies for the web app
yarn start # Start development server to serve the web app on http://localhost:4200/
git clone https://github.com/waku-org/js-waku-examples
cd relay-angular-chat
npm install
npm start
```
### Known issues

View File

@ -10,4 +10,4 @@ This example uses Waku Relay to send and receive simple text messages.
To test the example, simply download the `index.html` file from this folder and open it in a browser.
The `master` branch's HEAD is deployed at https://js-waku.wakuconnect.dev/examples/relay-js/.
The `master` branch's HEAD is deployed at https://examples.waku.org/relay-js/.

View File

@ -10,11 +10,13 @@
A barebone chat app to illustrate the [ReactJS Relay guide](https://docs.wakuconnect.dev/docs/guides/07_reactjs_relay/).
The `master` branch's HEAD is deployed at https://examples.waku.org/relay-reactjs-chat/.
To run a development version locally, do:
```shell
git clone https://github.com/waku-org/js-waku-examples/
cd js-waku-examples/relay-reactjs-chat
git clone https://github.com/waku-org/js-waku-examples
cd relay-reactjs-chat
npm install
npm run start
```

View File

@ -10,4 +10,4 @@ This example uses Waku Store to retrieve the latest ping relay message (used for
To test the example, simply download the `index.html` file from this folder and open it in a browser.
The `master` branch's HEAD is deployed at https://js-waku.wakuconnect.dev/examples/store-js/.
The `master` branch's HEAD is deployed at https://examples.waku.org/store-js/.

View File

@ -9,15 +9,13 @@
A simple app that retrieves chat messages using [Waku Store](https://rfc.vac.dev/spec/13/)
to illustrate the [Retrieve Messages Using Waku Store With ReactJS guide](https://docs.wakuconnect.dev/docs/guides/08_reactjs_store/).
The `master` branch's HEAD is deployed at https://js-waku.wakuconnect.dev/examples/store-reactjs-chat/.
The `master` branch's HEAD is deployed at https://examples.waku.org/store-reactjs-chat/.
To run a development version locally, do:
```shell
git clone https://github.com/status-im/js-waku/ ; cd js-waku
npm install # Install dependencies for js-waku
npm run build # Build js-waku
cd examples/store-reactjs-chat
npm install # Install dependencies for the web app
npm run start # Start development server to serve the web app on http://localhost:3000/
git clone https://github.com/waku-org/js-waku-examples
cd store-reactjs-chat
npm install
npm run start
```

View File

@ -11,17 +11,15 @@
A ReactJS chat app is provided as a showcase of the library used in the browser.
It implements [Waku v2 Toy Chat](https://rfc.vac.dev/spec/22/) protocol.
A deployed version is available at https://js-waku.wakuconnect.dev/examples/web-chat/.
A deployed version is available at https://examples.waku.org/web-chat/.
To run a development version locally, do:
```shell
git clone https://github.com/status-im/js-waku/ ; cd js-waku
npm install # Install dependencies for js-waku
npm run build # Build js-waku
cd examples/web-chat
npm install # Install dependencies for the web app
npm run start # Start development server to serve the web app on http://localhost:3000/js-waku
git clone https://github.com/waku-org/js-waku-examples
cd web-chat
npm install
npm run start
```
Use `/help` to see the available commands.