Skip to content

Commit

Permalink
Minor fixes for LAUNCH.md (#1956)
Browse files Browse the repository at this point in the history
  • Loading branch information
UncertainBadg3r authored Mar 20, 2024
1 parent efa2146 commit dcff720
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/LAUNCH.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,17 @@ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | \
sh -s -- -y --default-toolchain ${RUST_TOOLCHAIN} --component rust-src --target wasm32-unknown-unknown
```

4. initialize submodules
4. Initialize submodules

```
make init
```

### Create .env file with relaychain sudo key

Saying relaychain sudo key is `//Alice`, we need to put the following content in `scripts/helper/.env` file
Suppose the relaychain sudo key is `//Alice`, we need to put the following content in `scripts/helper/.env` file

**NOTE**: Pls contact parallel team member to have relaychain's sudo key
**NOTE**: Please contact a Parallel team member for the relaychain sudo key.

```
RELAY_CHAIN_SUDO_KEY="//Alice"
Expand All @@ -75,8 +75,8 @@ make launch

### Port forwarding (optional)

If you are running `make launch` on remote server, you can forward to local, here the bash script
for saving life
If you are running `make launch` on remote server, you can forward to local. Here is
the bash script to save you time:

```
function forward-port-to-local {
Expand All @@ -86,13 +86,13 @@ function forward-port-to-local {
}
```

eg. forward [email protected]'s 9944 port to local:
e.g. forward [email protected]'s 9944 port to local:

```
forward-port-to-local [email protected] 9944
```

Then access everything locally
Then access everything locally:

- [Relaychain](https://polkadot.js.org/apps/?rpc=ws%3A%2F%2F127.0.0.1%3A9944#/explorer)
- [Parachain](https://polkadot.js.org/apps/?rpc=ws%3A%2F%2F127.0.0.1%3A9948#/explorer)
Expand Down

0 comments on commit dcff720

Please sign in to comment.