Workflow and tools for developing with install profiles and Drush Make

A few months ago we completed a Drupal 5 to Drupal 7 migration project for a North Carolina museum website. Actually the Drupal 5 site was more of a Frankenstein site; the previous developers had more or less built their own CMS on top of Drupal. Fortunately, the superb Migrate module made writing migration code for this project a snap.

Getting a workflow together, however, was a bit more of a challenge. We had four people working on the project: two developers, a site builder, and a themer.

Because the project was complex and contained a number of different components, we agreed that development would work best with each developer building aspects of the site on their local machine. That way my work in writing migration code would not interfere with our themer's work, nor would it bother someone working on site building.

The key ingredients to a local development first workflow are git, drush, drush_make (now included in Drush 5), installation profiles, and Features.

In this blog post, we'll review some of the workflow and tools we used for development. We'll use a fictitous "MySite" project for our example.

Workflow

Install Profile

The file mysite.profile contains the default settings for the MySite project. It defines the content types, user roles, permissions, etc that go into a default Drupal install.

Unlike Drupal 6, the Install Profile in Drupal 7 is actually a few files: mysite.profile, mysite.info, mysite.install.

Drush Make files

There are actually two drush make files: mysite.build and mysite.make.

mysite.build is brief:

mysite.make contains the list of modules, themes, and libraries to download and add to the site.

Features

Features will be built to separate content from presentation. For example, if you want to export your work for "Blog functionality", one feature would contain the content type and fields, while a separate feature would contain the Views for displaying it on the site.

Git

The git repo for MySite is the basic structure for the site. The structure for the repo should not be altered, otherwise drush make won't work properly with it.

The repo looks like this:

  • As you build your features, drop them into /path/to/repo/modules/custom/[name-of-your-feature]
  • Custom themes go in /path/to/repo/themes/[name-of-theme]
  • Custom modules go in /path/to/repo/modules/custom/[name-of-module]
  • Edits to the install profile go in /path/to/repo/mysite.profile
  • Enable modules in /path/to/repo/mysite.info

The Drupal 5 site is in a separate repo.

Example workflow

Let's say you want to add Webform functionality to the latest dev build. You enable the Webform module in Drupal and configure the settings to your liking.

Using Features, you then package up the relevant settings and configuration into your mysite_webform Feature and download it to /path/to/repo/modules/custom/mysite_webform.

In the mysite.info file, you would add your Feature to the list of dependencies (this will enable it on site install).

Using git, you would then add this directory and mysite.info, commit to develop, and push the code up to origin.

Then other developers can run through the site rebuild command(s) and have your Webform feature enabled and configured locally.

Tools to make development easier

Our team's comfort with using the command line or drush varies. For a local development first workflow, using the command line is essential to productive, time-efficient development. Even for those of us more comfortable with the command line and drush commands, remembering all the commands to rebuild our local environments is a challenge. So, we wrote some scripts to help with the proces.

Rebuilding the site

The main script is called rebuild.sh. By running rebuild.sh on your local machine, you can ensure that you will have (1) the latest code from the develop branch in origin, (2) your local site's database will be identical to the other developers, (3) the migration script will pull in the latest content from the source database. So, let's break it down:

The first part is a simple yes/no prompt (borrowed from the Aegir project). This makes it simple for us to ask the user if we should continue at different points throughout the rebuild process:

The next step in rebuild.sh is to read the developers configuration from rebuild.config. This file should sit in the same directory as rebuild.sh (in our case, we kept both in the /resources directory at the root of the repository), and rebuild.config should not be tracked in the repo (a rebuild.config.example file should be though, as a helpful example to the other developers):

Basically, this is reading some variables that we can use later on the script. If we look at what is in rebuild.conf, we see:

The script asks that we do indeed want to rebuild our local environment, and continues by removing the old directory, running Drush Make, and re-installing the site using our install profile.

On a large project (75+ contributed modules), Drush Make and a Site Install could take about 5 minutes. If you use Squid as a caching server for drush module downloads, however, the process takes only about one minute. You can also experiment with providing a "file:///" URL in your mysite.build file for the [download][url] section where you are specifying the location of the make file.

Next up, we create some symlinks from the git repo to our site build directory:

We continue on and migrate content, if desired. Sometimes it's helpful to rebuild the local site without migrating any content, for example, if you want to alter a field, you need to do that before any content has been added to it.

As you can see, we were storing the D5 database in a git repo. Normally I would never put a database in a git repo, but because not all developers had access to the production server running the Drupal 5 site, we decided to store an ordered dump, excluding data from a number of cache tables. We wrote a script for this too; the script takes a snapshot of the D5 database, overwrites the mysite-d5-production.sql file stored in the D5 git repo, commits it to the master branch, and pushes to origin.

Ok, back to the rebuild.sh script! Next we do a couple of set up tasks for the Drupal site:

We had trouble setting some of these variables in the install profile, so we placed them in this script and had no troubles with this method.

Then, we run the migrations:

Then we enable our Webform feature:

Finally we make sure the Drupal 7 site has all the files from Drupal 5:

End result, after running rebuild.sh I have a complete site build that is identical to the other developers, symlinks are set up, content is migrated, and I am ready to start working on features or bug fixes. When I'm done with my work, I can merge into develop and push my changes up to origin, and now every other developer can have my changes in their local environment.

Verifying make files and install profiles

One problem that cropped up a few times as we were using this workflow were commits that broke the build. For example, if someone added a module incorrectly to the mysite.make file, and added the module as a dependency in mysite.info, the build would break because Drupal would try to enable a module that actually hadn't been downloaded in the site build. So, we wrote two simple scripts, verify_install.sh and verify_makefile.sh. As their filenames suggest, the scripts allow a developer to check a makefile or an install profile before they commit to the repository.

Other tools?

So, that's the basic workflow and toolset we worked with for a larger migration project using an install profile and drush make. We'd love to hear from you if you used other tools or a different workflow.

If we did this project again, one thing I'd probably skip is the use of drush make - better just to track the entire site in a git repo. I would probably also take the time to package up these scripts as a few drush commands that made use of drush aliases, adding a line in the drush alias to specify the git repo.

Hopefully these scripts will be useful to others who are undertaking projects like this. Feel free to leave a question below!

Comments

Permalink

Hi there.

I would really like this to work.- It seems really smart.

However I can figure out the structure of the codebase. - I have a normal drupal 7 codebase ($D7_DRUPAL_ROOT) downloaded from drupal.org, and in /profiles i have made my installation profile with the same structure as you mentioned.

But when I run the ./rebuild.sh script I get to this line: rm -rf $D7_DRUPAL_ROOT , as one of the first steps. This remove anything including the script currently running!?

I dont really get this. Could you please explain what Im doing wrong.

/Steffen.

In reply to by Steffen (not verified)

Permalink

Hi Steffen,

You need to make sure that your $D7_GIT_REPO and $D7_DRUPAL_ROOT paths are in two different locations. The git repo should be in one directory, and your site build takes place in another. That way you won't end up wiping out your git repo when you run the rebuild.

You might also look into using [Drush Rebuild](https://drupal.org/project/rebuild) for implementing a rebuild workflow with Drush make.

Good luck!

Kosta

In reply to by Kosta Harlan (not verified)

Permalink

Thanks for the quick reply Kosta.

Okay but I dont really see how this is done!? I mean, when I have a drupal codebase and inside that (profiles/) have made my git repo?

When im creating multi-sites, I make symlinks in drupal's folder at /sites/ , and then have the actual site-folder located on the same 'level' as my drupal7 codebase:

Folder-structure:
drupal6 (drupal core)
drupal7 (drupal core) ( in /sites creating 'ln -s ../../ mysite')
(site)

Do you mean that I should do this as well when Im working with installation profiles?

drupal6
drupal7 ( in /profiles creating 'ln -s ../../ mysite')

Or am I on a wrong track here?

Permalink

Hi,

thanks for that inspiring article. I wonder how you make a release and deploy dev to staging and prod.

Somehow you have to merge data from prod with code from dev - not sure how this could be done with install profiles..

Thanks, Michael.

Permalink

Thanks for posting this !!!
Well... It seems that you don't actually run "drush migrate-import --all" ?
Is there a way to write down some migration dependencies/order for the migrate module to use it ?

Permalink

Yes, you can specify dependencies in your migration code. For example

class MySiteProgramNodeMigration extends MySiteMigration {
public function __construct() {
parent::__construct();

$this->description = t('Migration for Program nodes');
// Define source fields for the migration
$source_fields = array('nid' => t('The node ID of the Program node.'));
// The user migration should run first, so that we can associate nodes
// with Drupal users
$this->dependencies = array('MySiteUser');

The Migrate Examples module has some more examples of this. We were running into issues with this though, and since we had a script in place for rebuilding the site, it was much more time efficient to call the migrations individually than to spend the time to debug our problems with Migrate module.

In reply to by Michael (not verified)

Permalink

I suspect the install profile is kept really small and only contains things which
Should Never Change, and all the interesting changes happen via Features.

(I am just now learning drupal and asking similar questions myself.)

Permalink

Great writeup, and these scripts will be really useful, thank you.

I'm interested to hear your thoughts on keeping everything in a single git repo vs. drush make, which you mentioned in the end. Care to elaborate on that?

Permalink

These scripts are awesome, and we;ve been building on them and using them a lot. Our versions are up at https://github.com/systemseed/ss_build_scripts. There are possibly a little bit more generic than the ons in this article, which were quite specific in places to the site that you were working on at the time.

Also very interested to hear some thoughts on single repo vs drush make. There are advantages and disadvantages to both approaches.

That's very cool Tom, thanks for sharing your code!

About single repo vs drush make, I've found that drush make is great if everyone on your team is up to speed and comfortable working with it. But many people are not. Having the site in a repo is conceptually simpler and you don't have to bother with symlinks and so on. Sharing changes that you've made locally is as simple as making a branch and pushing it to origin, which other developers can immediately use.

But, probably the main advantage is speed. Even using squid, waiting 1-2 minutes for a site to rebuild is too cumbersome.

Add new comment

Restricted HTML

  • Allowed HTML tags: <a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id>
  • Lines and paragraphs break automatically.
  • Web page addresses and email addresses turn into links automatically.