Forked from typhonius/adammalone.aliases.drushrc.php
Last active
August 29, 2015 14:21
-
-
Save welly/16af21d9e48e83631b6a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$adam = array( | |
'remote-host' => 'adammalone.net', | |
'root' => '/var/www/html/adammalone/docroot', | |
'uri' => 'adammalone.net', | |
'strict' => 0, | |
'path-aliases' => array( | |
'%dump-dir' => '/home/adammalone/.drush/dumps', | |
'%files' => 'sites/default/files', | |
), | |
'env' => 'prod', | |
'#prod' => '@adammalone.prod', | |
); | |
$aliases['adammalone.prod'] = $adam; | |
$aliases['adammalone.test'] = array( | |
'remote-host' => 'dev.adammalone.net', | |
'env' => 'test', | |
) + $adam; | |
$aliases['adammalone.dev'] = array( | |
'root' => '/Users/adam.malone/sites/adammalone.net', | |
'env' => 'dev', | |
) + $adam; | |
unset($aliases['adammalone.dev']['remote-host']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment