18 lines
452 B
PHP
18 lines
452 B
PHP
|
<?php
|
||
|
|
||
|
$aliases['dev'] = [
|
||
|
'root' => '/var/www/drutopia/web',
|
||
|
'uri' => 'http://agaric-com.test/',
|
||
|
];
|
||
|
|
||
|
$aliases['test'] = [
|
||
|
'root' => '/home/agaric_test/site/web',
|
||
|
'uri' => 'https://agaric-test.drutopia.org',
|
||
|
'remote-user' => 'agaric_test',
|
||
|
'remote-host' => 'elizabeth.mayfirst.org',
|
||
|
'path-aliases' => [
|
||
|
'%drush' => '/home/agaric_test/site/vendor/drush/drush',
|
||
|
'%drush-script' => '/home/agaric_test/site/vendor/bin/drush',
|
||
|
],
|
||
|
];
|