Agnostic dump

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

Database agnostic data dumper for moving Drupal data from e.g. mysql database to sqlite3 database.

Module provides two drush commands, one for creating a dump and another one for importing it, simple as that - no extra configuration is needed.

Create the dump:

$ drush agnostic-dump > out.db

Read it in:

$ drush agnostic-import out.db

Drupal Development VM

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

This project makes building a local Drupal development environment quick and easy, and introduces new developers to the wonderful world of Drupal development on local virtual machines.

Drupal VM works on Mac, Linux, and Windows, and supports a variety of guest OSes and software choices.

Drupal VM is hosted on GitHub.

Herald

Component type

module

Maintenance status

Development status

Downloads

296

Component created

Component changed

Herald logo

Herald is a project/service for monitoring Drupal code quality.

You can see it in action here.

Herald exposes a flexible API for monitoring Drupal projects (mainly Drupal modules and themes), create builds (like reacting when code is pushed to a Git repo) and running tasks on that build (like checking code standards or running unit tests using Docker).

Drush Entity Field

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

Drush support for field CRUD operations over entities.

It supports the bulk creation of fields using an Excel file. This feature is specially useful for the creation of content types or entities with a big number of fields.

Installation

This module is a Drush extension, so it may be installed at the /home/user/.drush directory (Linux) or c:Usersuser.drush under Windows.

File Delete

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

This module provides drush support to delete unused files from database (table files_managed) and from the file system. It was developed because of a customized migrate media migration. While deleting a node with media file attached the file entry gets removed from file_usage table but not from file_managed. See issue [#2444549] Media and file cleanup.

Entity Enqueue

Component type

module

Categories

Maintenance status

Development status

Downloads

899

Component created

Component changed

Entity Enqueue provides utility functions to enqueue entities to be processed later using Drupal's Queue API. It will not process any entity enqueued, you have to write the corresponding queue worker callback as always according the Queue API.
In addition to saving a few lines of code on Queue API calls each time you create a queue item, the most useful part comes from the provided matching Drush commands for each possible function.

Drush Download File

Component type

module

Maintenance status

Development status

Downloads

421

Component created

Component changed

Drush Download File is a drush plugin that allows you to download files and place them in locations. This is behavior similar to what a make file can provide except you won't need to write a make file in order to get a file and put it in the right place.