Skip to content
This repository has been archived by the owner on Aug 20, 2019. It is now read-only.

Drush makefile based site

Brian Gilbert edited this page Jan 5, 2016 · 3 revisions

Assuming you are using git, start by cloning your project to local machine:

git clone https://github.com/drupalmel/drupalmel.git

CD to the directory:

cd drupalmel

Download Vagrantfile and config.yml:

wget https://raw.githubusercontent.com/drupalmel/beetbox/master/Vagrantfile
wget https://raw.githubusercontent.com/drupalmel/beetbox/master/config.yml

Edit the config.yml appropriately, examples of changed lined below:

Drupal 7 site

# Beetbox settings.
beet_domain: "drupalmel.local"
beet_root: "/www/{{ beet_project }}"
beet_web: "{{ beet_root }}"
beet_site_name: "drupalmel"

# Drupal settings.
drupal_build_makefile: yes
drupal_makefile_path: /www/stub.make
drupal_install_site: yes
drupal_install_profile: drupalmel
drupal_account_name: admin
drupal_account_pass: admin

Start tha vagrant:
vagrant up

If it fails for any reason and you need to make changes just update config and run:
vagrant provision

Anytime you need to update the config just run the following to apply:
provision

Clone this wiki locally