Security update for Core, with self-updated composer
[yaffs-website] / vendor / drupal / console-en / translations / database.add.yml
1 description: 'Add a database to settings.php'
2 options:
3   database: 'The database name'
4   username: 'The database username'
5   password: 'The database password'
6   prefix: 'The database prefix'
7   host: 'The database host address'
8   port: 'The database host port'
9   driver: 'The database driver'
10 questions:
11   database: 'Enter the database name'
12   username: 'Enter the username to access the database'
13   password: 'Enter password for the database user'
14   prefix: 'Enter the database prefix'
15   host: 'Enter the database host address'
16   port: 'Enter the database host port'
17   driver: 'Enter the database driver'
18 error: 'Could not write the site settings file. Either run this command as sudo or temporarily change permissions to allow write access to settings.php.'
19 examples:
20     - description: 'Add a database to the settings.php'
21       execution: |
22         drupal database:add \
23           --database=DATABASE \
24           --username=USERNAME \
25           --password=PASSWORD