Skip to content

Commit

Permalink
Terser instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
pkoch committed Dec 6, 2024
1 parent 0bd3f5f commit 0b8c307
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ This example is meant to be a bare-bones version of what's necessary to particip
5. Configure the VM to run the node
1. Connect to the VM
```
ssh -i id_example ec2-user@`terraform output -json | jq -r .instance_public_ip.value`
ssh -i id_example ec2-user@`terraform output -raw instance_public_ip`
```
2. Install docker and log out
Expand All @@ -50,13 +50,13 @@ This example is meant to be a bare-bones version of what's necessary to particip
```
3. Copy over the `genesis.json` file
```
ssh -i id_example ec2-user@`terraform output -json | jq -r .instance_public_ip.value` mkdir -p kwil-home-dir
scp -i id_example genesis.json ec2-user@`terraform output -json | jq -r .instance_public_ip.value`:kwil-home-dir/
ssh -i id_example ec2-user@`terraform output -raw instance_public_ip` mkdir -p kwil-home-dir
scp -i id_example genesis.json ec2-user@`terraform output -raw instance_public_ip`:kwil-home-dir/
```
3. Connect to the VM again
Note that we'll be using ssh agent forwarding (`-A`) to facilitate authentication with GitHub.
```
ssh -A -i id_example ec2-user@`terraform output -json | jq -r .instance_public_ip.value`
ssh -A -i id_example ec2-user@`terraform output -raw instance_public_ip`
```
4. Do the rest of the ambient setup
```
Expand Down

0 comments on commit 0b8c307

Please sign in to comment.