Skip to content

Latest commit

 

History

History
57 lines (42 loc) · 1.96 KB

README.md

File metadata and controls

57 lines (42 loc) · 1.96 KB

version 0.1.0

DESCRIPTION

Builds a Drupal environment and site on top of a Vagrant vm. This repo can be used as is to get a Drupal site up and running quickly or as a template for your own Drupal projects.

REQUIREMENTS

BASIC USAGE

  1. Start on the host by provisioning and logging into a vm:

     host$ git clone git://github.com/xforty/vagrant-drupal.git
     host$ cd vagrant-drupal
     host$ librarian-chef install
     host$ vagrant up
     host$ vagrant ssh
    
  2. Then build and install a drupal site on the vm:

     vm$ sudo drush make --prepare-install /vagrant/example.make /srv/www
     vm$ cd /srv/www
     vm$ sudo drush site-install --db-url=mysql://dbuser:password@localhost/drupal
    
  3. Go to http://localhost:4567 and log in to the drupal site with the credentials specified in the site-install output.

VAGRANT

It is common to modify the Vagrantfile. We encourage you to read through the comments in the Vagrantfile as well as the official Vagrant documentation for other possible configurations.

RESOURCES


Maintained by xforty technologies