vagrant
Install
Follow the Vagrant install instructions.
Usage
# Launch the VM
vagrant up
# SSH into the VM and visit the project root
vagrant ssh
cd /vagrant
# Suspend the VM
vagrant suspend
# Reload the VM after making changes to the vagrantfile (or Homestead.yaml)
vagrant reload --provision
# Destroy and recreate the VM
# Warning: potential data loss
vagrant destroy
vagrant provision
vagrant up