Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / isolation / fixtures / sitealiases / legacy / cc.aliases.drushrc.php
1 <?php
2
3 $aliases['live'] = array (
4   'parent' => '@server.digital-ocean',
5   'project-type' => 'live',
6   'root' => '/srv/www/couturecostume.com/htdocs',
7   'uri' => 'couturecostume.com',
8   'path-aliases' => array(
9     '%dump-dir' => '/var/sql-dump/',
10   ),
11   'target-command-specific' => array(
12     'sql-sync' => array(
13       'disable' => array('stage_file_proxy'),
14       'permission' => array(
15         'authenticated user' => array(
16           'remove' => array('access environment indicator'),
17         ),
18         'anonymous user' => array(
19           'remove' => 'access environment indicator',
20         ),
21       ),
22     ),
23   ),
24 );
25
26 $aliases['update'] = array (
27   'parent' => '@server.nitrogen',
28   'root' => '/srv/www/update.couturecostume.com/htdocs',
29   'uri' => 'update.couturecostume.com',
30   'target-command-specific' => array(
31     'sql-sync' => array(
32       'enable' => array('environment_indicator', 'stage_file_proxy'),
33       'permission' => array(
34         'authenticated user' => array(
35           'add' => array('access environment indicator'),
36         ),
37         'anonymous user' => array(
38           'add' => 'access environment indicator',
39         ),
40       ),
41     ),
42   ),
43 );