... | ... | @@ -101,7 +101,7 @@ No special actions required for the first few weeks. |
|
|
- 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).
|
|
|
- Verifiy this by opening `git bash`
|
|
|
- Type `ls \~/.ssh`
|
|
|
- Type `ls ~/.ssh`
|
|
|
- You should see **at least** the 2 files
|
|
|
- **download and install Vagrant:**
|
|
|
- https://www.vagrantup.com/downloads
|
... | ... | @@ -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:
|
|
|
|
|
|
macOS:
|
|
|
```yaml
|
|
|
authorize: ~/.ssh/id_ed25519.pub
|
|
|
keys:
|
|
|
- ~/.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:**
|
|
|
- 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._
|
... | ... | |