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
- Host: GitHub
- URL: https://github.com/scbd/cbd-chm-toolkit
- Owner: scbd
- Created: 2017-05-31T17:28:08.000Z (about 9 years ago)
- Default Branch: 7.x-1.x
- Last Pushed: 2017-05-23T19:10:03.000Z (about 9 years ago)
- Last Synced: 2025-01-18T20:41:19.922Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 72.4 MB
- Stars: 0
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
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';
}
```