Update Semester 1 authored by Frédéric Vlummens's avatar Frédéric Vlummens
...@@ -101,7 +101,7 @@ No special actions required for the first few weeks. ...@@ -101,7 +101,7 @@ No special actions required for the first few weeks.
- Make sure you followed the steps described [here.](software/ssh-keys) - Make sure you followed the steps described [here.](software/ssh-keys)
- This means you have 2 files: `id_ed25519` and `id_ed25519.pub` in a folder called `.ssh` in your homefolder (= this is the folder with your name of the user you logged in with on your computer). - This means you have 2 files: `id_ed25519` and `id_ed25519.pub` in a folder called `.ssh` in your homefolder (= this is the folder with your name of the user you logged in with on your computer).
- Verifiy this by opening `git bash` - Verifiy this by opening `git bash`
- Type `ls \~/.ssh` - Type `ls ~/.ssh`
- You should see **at least** the 2 files - You should see **at least** the 2 files
- **download and install Vagrant:** - **download and install Vagrant:**
- https://www.vagrantup.com/downloads - https://www.vagrantup.com/downloads
...@@ -126,11 +126,19 @@ No special actions required for the first few weeks. ...@@ -126,11 +126,19 @@ No special actions required for the first few weeks.
``` ```
- Update the properties **authorize** and **keys** in your Homestead.yaml file with: - Update the properties **authorize** and **keys** in your Homestead.yaml file with:
macOS:
```yaml ```yaml
authorize: ~/.ssh/id_ed25519.pub authorize: ~/.ssh/id_ed25519.pub
keys: keys:
- ~/.ssh/id_ed25519 - ~/.ssh/id_ed25519
``` ```
Windows:
```yaml
authorize: C:/Full/Path/To/Your/HomeDir/.ssh/id_ed25519.pub
keys:
- C:/Full/Path/To/Your/HomeDir/.ssh/id_ed25519
```
- **test the installation:** - **test the installation:**
- Launching the Homestead Box: - Launching the Homestead Box:
- Run the **vagrant up** command from your Homestead directory, to boot your Homestead box. _When you run the **vagrant up** command for the first time, and only then, it will start with downloading the Homestead box._ - Run the **vagrant up** command from your Homestead directory, to boot your Homestead box. _When you run the **vagrant up** command for the first time, and only then, it will start with downloading the Homestead box._
... ...
......