From d961a492cbe667821294c6d724830a4b63d135a0 Mon Sep 17 00:00:00 2001 From: meaz Date: Fri, 3 Jan 2020 10:09:39 +0100 Subject: [PATCH] Change folder name to make more sense --- vagrant/README.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/vagrant/README.md b/vagrant/README.md index 61e066b1..71deace9 100644 --- a/vagrant/README.md +++ b/vagrant/README.md @@ -46,17 +46,21 @@ ## Installation -1. Clone disroot-website repo to disroot-website project folder +1. Create a Disroot folder, in which you'll clone three repositories: ``` - git clone https://git.fosscommunity.in/disroot/disroot-website.git ~/disroot-website + mkdir ~/Disroot ``` -2. Clone grav-theme-disroot repo to disroot-website project folder +2. Clone disroot-website repo to Disroot folder ``` - git clone https://git.disroot.org/Disroot/grav-theme-disroot.git ~/disroot-website + git clone https://git.fosscommunity.in/disroot/disroot-website.git ~/Disroot ``` -3. Clone grav-plugin-language-selector repo to disroot-website project folder +2. Clone grav-theme-disroot repo to Disroot folder ``` - git clone https://git.disroot.org/Disroot/grav-plugin-language-selector.git ~/disroot-website + git clone https://git.disroot.org/Disroot/grav-theme-disroot.git ~/Disroot + ``` +3. Clone grav-plugin-language-selector repo to Disroot folder + ``` + git clone https://git.disroot.org/Disroot/grav-plugin-language-selector.git ~/Disroot ``` 4. Add the local domain name for the hub to your host machine's `/etc/hosts` file. @@ -65,13 +69,13 @@ ``` 5. Launch Vagrant to build the virtual machine (VM). This will take several minutes. ``` - cd ~/disroot-website/vagrant + cd ~/Disroot/disroot-website/vagrant vagrant up disroot_lan ``` Congratulations, you should now have a fully functioning apache+GRAV server running locally in a Virtualbox-hosted VM managed by Vagrant. Next time you want to run vagrant simply run command ``` - cd ~/disroot-website/vagrant + cd ~/Disroot/disroot-website/vagrant vagrant up disroot_lan vagrant provision ```