2 min read

Using Vagrant and Homestead In as Little Steps as Possible (Per Project Install)

I want to show you guys just how quick and easy it easy to get a Laravel project up and running alongside Vagrant/Homestead.

Contents

1. Head over to your chosen directory and run something like…

composer create-project laravel/laravel PROJECTNAME

or if you have the Laravel installer…

laravel new PROJECTNAME

This will create a Laravel project directory with everything installed inside the given PROJECTNAME folder.

2. When you cd into your PROJECTNAME directory, you can run the following…

composer require laravel/homestead --dev

This will add Homestead into your Composers require attribute under the dev tag, which means it will only be used for development purposes.

3. You then need to run…

vendor/bin/homestead make

This will create the VagrantFile and Homestead.yaml file to be used for Vagrant.

The Homestead.yaml file is used to configure any settings to be used in your virtual machine. If you need more advanced settings, then check out the Homestead docs, which shows how to add Blackfire and Crons etc.

4. Run vagrant up

This will get your virtual machine up and running, once running, you can visit the site through 192.168.10.10, it should now be ready for dev work.


If you’re like me and don’t like working on the IP address, you have a couple of options. Firstly, you can add a hostname manually in your computers hosts file. Something like…

192.168.10.10 homestead.app

You can change “homestead.app” to whatever host name you prefer. The better and more elegant way is to add a Vagrant plugin called “Vagrant Hosts Updater”…

vagrant plugin install vagrant-hostsupdater

This will automatically edit your hosts file using the settings inside your Homestead.yaml file. You can change the hostname by editing the following attributes; hostname, name and sites: -map to your chosen domain name e.g. example.app or example.dev etc.

Mac and Linux users will also be asked for their admin passwords, whilst in Windows, you will need to run the Command Line as an administrator.


Here are some fantastic commands you should learn as well as documentation from other resources to learn more about Vagrant and Homestead environments.

upBoots up the machine and fires provision
reloadReboots the machine
provisionRuns only the provisioner(s)
initInitializes a new Vagrantfile based on specified box url
haltTurns off the machine
destroyDestroys the virtual machine
suspendSuspends execution
resumeResumes execution
sshLogs in via ssh (no password is required)
statusShows info about the current Vagrant environment
global-statusShows info about all Vagrant’s environments

Homestead Documentation

Vagrant Documentation

Awesome book about Vagrant written by Erika Heidi