Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions REMOTE_SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ To create a separate SSH key to exclusively use for this bootcamp use the follow

```bash
# replace your_email@example.com, this is purely informative and allows you to remember the use of this key
ssh-keygen -t ed25519 -f ~/.ssh/de-bootcamp -C your_email@example.com
ssh-keygen -t ed25519 -f ~/.ssh/ds-bootcamp -C your_email@example.com
```

Your new SSH Key will be named `de-bootcamp`. Make sure to remember it for later!
Your new SSH Key will be named `ds-bootcamp`. Make sure to remember it for later!
</details>


Expand Down Expand Up @@ -207,7 +207,7 @@ ssh -i 👉PATH_TO_YOUR_PRIVATE_KEY👈 lewagon@👉YOUR_IP_ADDRESS👈
Error:

``` bash
ssh -i ~/.ssh/id_ed25519_data_eng_setup lewagon@34.52.208.105
ssh -i ~/.ssh/id_ed25519 lewagon@34.52.208.105
ssh: connect to host 34.52.208.105 port 22: Operation timed out
```

Expand All @@ -220,7 +220,7 @@ ssh -i 👉PATH_TO_YOUR_PRIVATE_KEY👈 lewagon@👉YOUR_IP_ADDRESS👈
<summary>❌ Connection refused</summary>

``` bash
ssh -i ~/.ssh/id_ed25519_data_eng_setup lewagon@34.52.208.105
ssh -i ~/.ssh/id_ed25519 lewagon@34.52.208.105
ssh: connect to host 34.52.208.105 port 22: Connection refused
```

Expand Down Expand Up @@ -333,7 +333,7 @@ You can now change Host to whatever you would like to see as the name of your co

```bash
# For instance
Host "de-bootcamp-vm"
Host "ds-bootcamp-vm"
HostName 34.77.50.76 # replace with your VM's public IP address
IdentityFile <file path for your ssh key>
User <username>
Expand Down
6 changes: 3 additions & 3 deletions VM.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ To create a separate SSH key to exclusively use for this bootcamp use the follow

```bash
# replace your_email@example.com, this is purely informative and allows you to remember the use of this key
ssh-keygen -t ed25519 -f ~/.ssh/de-bootcamp -C your_email@example.com
ssh-keygen -t ed25519 -f ~/.ssh/ds-bootcamp -C your_email@example.com
```

Your new SSH Key will be named `de-bootcamp`. Make sure to remember it for later!
Your new SSH Key will be named `ds-bootcamp`. Make sure to remember it for later!
</details>


Expand Down Expand Up @@ -316,7 +316,7 @@ You can now change Host to whatever you would like to see as the name of your co

```bash
# For instance
Host "de-bootcamp-vm"
Host "ds-bootcamp-vm"
HostName 34.77.50.76 # replace with your VM's public IP address
IdentityFile <file path for your ssh key>
User <username>
Expand Down
4 changes: 2 additions & 2 deletions _partials/vm_test.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ssh -i 👉PATH_TO_YOUR_PRIVATE_KEY👈 lewagon@👉YOUR_IP_ADDRESS👈
Error:

``` bash
ssh -i ~/.ssh/id_ed25519_data_eng_setup lewagon@34.52.208.105
ssh -i ~/.ssh/id_ed25519 lewagon@34.52.208.105
ssh: connect to host 34.52.208.105 port 22: Operation timed out
```

Expand All @@ -48,7 +48,7 @@ ssh -i 👉PATH_TO_YOUR_PRIVATE_KEY👈 lewagon@👉YOUR_IP_ADDRESS👈
<summary>❌ Connection refused</summary>

``` bash
ssh -i ~/.ssh/id_ed25519_data_eng_setup lewagon@34.52.208.105
ssh -i ~/.ssh/id_ed25519 lewagon@34.52.208.105
ssh: connect to host 34.52.208.105 port 22: Connection refused
```

Expand Down
8 changes: 6 additions & 2 deletions builds/REMOTE_SETUP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,16 @@ locales: [en]
partials:
- intro
- setup/github
- de_setup/ssh_key
- name: de_setup/ssh_key
vars:
key_name: ds-bootcamp
- vm_register
- vm_start
- vm_test
- de_setup/win_vscode
- de_setup/vscode_remote_ssh
- name: de_setup/vscode_remote_ssh
vars:
vm_hostname: ds-bootcamp-vm
- vscode_extensions
- setup/vscode_aifeatures
- setup/cli_tools
Expand Down
8 changes: 6 additions & 2 deletions builds/VM.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@ locales: [en, es]
partials:
- intro
- setup/github
- de_setup/ssh_key
- name: de_setup/ssh_key
vars:
key_name: ds-bootcamp
- de_setup/gcp_setup
- de_setup/virtual_machine
- de_setup/win_vscode
- de_setup/vscode_remote_ssh
- name: de_setup/vscode_remote_ssh
vars:
vm_hostname: ds-bootcamp-vm
- vscode_extensions
- setup/vscode_aifeatures
- setup/cli_tools
Expand Down
Loading