Initial Drupal 11 with DDEV setup
This commit is contained in:
43
vendor/consolidation/site-alias/tests/fixtures/sitealiases/legacy/cc.aliases.drushrc.php
vendored
Normal file
43
vendor/consolidation/site-alias/tests/fixtures/sitealiases/legacy/cc.aliases.drushrc.php
vendored
Normal file
@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
$aliases['live'] = array (
|
||||
'parent' => '@server.digital-ocean',
|
||||
'project-type' => 'live',
|
||||
'root' => '/srv/www/couturecostume.com/htdocs',
|
||||
'uri' => 'couturecostume.com',
|
||||
'path-aliases' => array(
|
||||
'%dump-dir' => '/var/sql-dump/',
|
||||
),
|
||||
'target-command-specific' => array(
|
||||
'sql-sync' => array(
|
||||
'disable' => array('stage_file_proxy'),
|
||||
'permission' => array(
|
||||
'authenticated user' => array(
|
||||
'remove' => array('access environment indicator'),
|
||||
),
|
||||
'anonymous user' => array(
|
||||
'remove' => 'access environment indicator',
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
$aliases['update'] = array (
|
||||
'parent' => '@server.nitrogen',
|
||||
'root' => '/srv/www/update.couturecostume.com/htdocs',
|
||||
'uri' => 'update.couturecostume.com',
|
||||
'target-command-specific' => array(
|
||||
'sql-sync' => array(
|
||||
'enable' => array('environment_indicator', 'stage_file_proxy'),
|
||||
'permission' => array(
|
||||
'authenticated user' => array(
|
||||
'add' => array('access environment indicator'),
|
||||
),
|
||||
'anonymous user' => array(
|
||||
'add' => 'access environment indicator',
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
Reference in New Issue
Block a user