Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Minor fixes for LAUNCH.md #1956

Merged
merged 1 commit into from
Mar 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading