Skip to content

Latest commit

 

History

History
62 lines (42 loc) · 2.17 KB

README.md

File metadata and controls

62 lines (42 loc) · 2.17 KB

Vagrant Boilerplate

This is a personal Vagrant setup that I use for each project that I manage. It's basic LEMP stack on Ubuntu 14.04 with a few additions such as Composer, Node.js and WP-CLI ready at the get-go.

Why another boilerplate?

VVV is a fantastic Vagrant setup, where much of the provisioning of this setup is based on. However, VVV provides lot of things out of the box which I don't necessarily require in my development workflow, plus it is catered more on WordPress development. On the other hand, I would only need a simple LEMP stack, that also works well on my Windows machine.

Requirement

Note: Vagrant::Hostsupdater is optional to automatically add the entry to the hosts file. If you skip that, you will need to manually edit the hosts file and add the related entry yourself.

Usage

git clone https://github.com/fsylum/vagrant-boilerplate <project-name>
cd <project-name>
vagrant up

All Vagrant commands like vagrant halt, vagrant destroy and vagrant suspend are applicable.

Credentials

MySQL root:

User: root Password: password

Additional MySQL access:

User: vagrant Password: password Database: vagrant

What's Included?

Directory Structure

  • config - Contains all services related configuration, please modify it accordingly to your usage.
  • logs - Contains all the logs generated from nginx as well as PHP errors.
  • www - The web root of your web application.

Credits

VVV team for an awesome Vagrant setup.