We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, the site:settings command will append the contents of a template (https://github.com/dennisinteractive/drupal_console_commands/blob/master/src/Command/Site/Settings/Includes/Drupal8/settings.local.php) onto settings.local.php.
site:settings
This is not very generic, it makes the assumption that everyone uses the modules in the template.
settings: config: stage_file_proxy.settings: origin: cdn.subscriptions.dennis.co.uk cdn.settings: mapping: domain: http://subscriptions.vm8.didev.co.uk
The generated settings.local.php should look like this:
$config['stage_file_proxy.settings']['origin'] = 'cdn.subscriptions.dennis.co.uk'; $config['cdn.settings']['mapping']['domain'] = 'http://subscriptions.vm8.didev.co.uk';
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Background
Currently, the
site:settings
command will append the contents of a template (https://github.com/dennisinteractive/drupal_console_commands/blob/master/src/Command/Site/Settings/Includes/Drupal8/settings.local.php) onto settings.local.php.This is not very generic, it makes the assumption that everyone uses the modules in the template.
Proposed solution
The generated settings.local.php should look like this:
The text was updated successfully, but these errors were encountered: