25 lines
567 B
Plaintext
Executable File
25 lines
567 B
Plaintext
Executable File
<?php
|
|
/**
|
|
* Copyright © Magento, Inc. All rights reserved.
|
|
* See COPYING.txt for license details.
|
|
*/
|
|
|
|
// List of bin/magento setup CLI commands to run after setup:install
|
|
return [
|
|
/*
|
|
[
|
|
'command' => 'setup:config:set',
|
|
'config' => [
|
|
'--queue-default-connection' => 'db',
|
|
'--remote-storage-driver' => 'aws-s3',
|
|
'--remote-storage-bucket' => 'myBucket',
|
|
'--remote-storage-region' => 'us-east-1'
|
|
]
|
|
],
|
|
[
|
|
'command' => 'setup:upgrade',
|
|
'config' => []
|
|
]
|
|
*/
|
|
];
|