From 8fca7e1f51cc37de5576eea51a7666d37c954a91 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 23 Apr 2014 22:48:59 -0700 Subject: [PATCH 1/2] change a few words --- _posts/01-06-01-Vagrant.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/01-06-01-Vagrant.md b/_posts/01-06-01-Vagrant.md index b1b3a01..274561d 100644 --- a/_posts/01-06-01-Vagrant.md +++ b/_posts/01-06-01-Vagrant.md @@ -10,14 +10,14 @@ popping up when you go live. It's also tricky to keep different development envi version for all libraries used when working with a team of developers. If you are developing on Windows and deploying to Linux (or anything non-Windows) or are developing in a team, you -should consider using a virtual machine. This sounds tricky, but using [Vagrant][vagrant] you can set up a simple +should consider using a virtual machine. This sounds tricky, but by using [Vagrant][vagrant] you can set up a simple virtual machine with only a few steps. These base boxes can then be set up manually, or you can use "provisioning" software such as [Puppet][puppet] or [Chef][chef] to do this for you. Provisioning the base box is a great way to ensure that multiple boxes are set up in an identical fashion and removes the need for you to maintain complicated "set up" command lists. You can also "destroy" your base box and recreate it without many manual steps, making it easy to create a "fresh" installation. -Vagrant creates shared folders used to share your code between your host and your virtual machine, meaning you can +Vagrant creates folders for sharing your code between your host and your virtual machine, which means that you can create and edit your files on your host machine and then run the code inside your virtual machine. ### A little help From d0292a994ac2e9e4a75bb2531c8234ef504ece38 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 23 Apr 2014 23:04:22 -0700 Subject: [PATCH 2/2] new commit --- _posts/01-06-01-Vagrant.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/01-06-01-Vagrant.md b/_posts/01-06-01-Vagrant.md index 274561d..53fe397 100644 --- a/_posts/01-06-01-Vagrant.md +++ b/_posts/01-06-01-Vagrant.md @@ -24,7 +24,7 @@ create and edit your files on your host machine and then run the code inside you If you need a little help to start using Vagrant there are three services that might be useful: -- [Rove][rove]: service that allows you to pregenerate typical Vagrant builds, PHP among the options. The +- [Rove][rove]: service that allows you to pre-generate typical Vagrant builds, PHP among the options. The provisioning is made with Chef. - [Puphpet][puphpet]: simple GUI to set up virtual machines for PHP development. **Heavily focused in PHP**. Besides local VMs, can be used to deploy to cloud services as well. The provisioning is made with Puppet.