38cc9f1c3c33cce759b3821498222c4335c1335c
[yaffs-website] / vendor / drush / drush / isolation / fixtures / sitealiases / legacy / pantheon.aliases.drushrc.php
1 <?php
2   /**
3    * Pantheon drush alias file, to be placed in your ~/.drush directory or the aliases
4    * directory of your local Drush home. Once it's in place, clear drush cache:
5    *
6    * drush cc drush
7    *
8    * To see all your available aliases:
9    *
10    * drush sa
11    *
12    * See http://helpdesk.getpantheon.com/customer/portal/articles/411388 for details.
13    */
14
15   $aliases['outlandish-josh.test'] = array(
16     'uri' => 'test-outlandish-josh.pantheonsite.io',
17     'db-url' => 'mysql://pantheon:pw@dbserver.test.site-id.drush.in:11621/pantheon',
18     'db-allows-remote' => TRUE,
19     'remote-host' => 'appserver.test.site-id.drush.in',
20     'remote-user' => 'test.site-id',
21     'ssh-options' => '-p 2222 -o "AddressFamily inet"',
22     'path-aliases' => array(
23       '%files' => 'code/sites/default/files',
24       '%drush-script' => 'drush',
25      ),
26   );
27   $aliases['outlandish-josh.live'] = array(
28     'uri' => 'www.outlandishjosh.com',
29     'db-url' => 'mysql://pantheon:pw@dbserver.live.site-id.drush.in:10516/pantheon',
30     'db-allows-remote' => TRUE,
31     'remote-host' => 'appserver.live.site-id.drush.in',
32     'remote-user' => 'live.site-id',
33     'ssh-options' => '-p 2222 -o "AddressFamily inet"',
34     'path-aliases' => array(
35       '%files' => 'code/sites/default/files',
36       '%drush-script' => 'drush',
37      ),
38   );
39   $aliases['outlandish-josh.dev'] = array(
40     'uri' => 'dev-outlandish-josh.pantheonsite.io',
41     'db-url' => 'mysql://pantheon:pw@dbserver.dev.site-id.drush.in:21086/pantheon',
42     'db-allows-remote' => TRUE,
43     'remote-host' => 'appserver.dev.site-id.drush.in',
44     'remote-user' => 'dev.site-id',
45     'ssh-options' => '-p 2222 -o "AddressFamily inet"',
46     'path-aliases' => array(
47       '%files' => 'code/sites/default/files',
48       '%drush-script' => 'drush',
49      ),
50   );