An open API service indexing awesome lists of open source software.

https://github.com/scbd/cbd-chm-toolkit

CBD Clearing House Mechanism portal toolkit built on Drupal 7
https://github.com/scbd/cbd-chm-toolkit

Last synced: about 1 year ago
JSON representation

CBD Clearing House Mechanism portal toolkit built on Drupal 7

Awesome Lists containing this project

README

          

# Drupal 7 CHM toolkit for CBD

# Developer notes

- Create your own aliases by adding a file `drush/aliases/aliases.local.php`

- Configure drushrc.php file

vim ~/.drush/drushrc.php
Add the following snippet

```
' . drush_bit_bucket(), $repo_dir);
if ($success) {
$output = drush_shell_exec_output();
$repo = $output[0];
$options['config'] = $repo . '/drush/drushrc.php';
$options['include'] = $repo . '/drush/commands';
$options['alias-path'] = $repo . '/drush/aliases';
}
```