Skip to content

Commit 1727d52

Browse files
authored
Fix code blocks
1 parent c07bd04 commit 1727d52

File tree

1 file changed

+4
-8
lines changed
  • module7-cloud-computing/r1.2-deployment

1 file changed

+4
-8
lines changed

module7-cloud-computing/r1.2-deployment/README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -94,27 +94,23 @@ Select the key’s contents and copy it into Github. Deploy keys are added in a
9494

9595
Whenever you are logged in over SSH, you want the keys to be added so that they are used to authenticate with Github. To do this, add these lines to the top of your ~/.bashrc file.
9696

97-
<code>
97+
```
9898
Start the SSH agent
99-
10099
eval ssh-agent -s
101-
102100
Add the SSH key
103-
104101
ssh-add
105-
</code>
102+
```
106103

107104
This will make sure you use the keys whenever you log on to the server. To run the code without logging out, execute the .bashrc file
108105

109106
`source ~/.bashrc`
110107

111108
Now we can clone the repo!
112109

113-
<code>
110+
```
114111
You should use your own git URL.
115-
116112
git clone [email protected]:roberttod/tutorial-pt-2.git
117-
</code>
113+
```
118114

119115
## Keeping the Node.js process running
120116

0 commit comments

Comments
 (0)