a831470393659177065c1b6e545bb26a91068120
[yaffs-website] / vendor / drupal / console-en / translations / site.install.yml
1 description: 'Install a Drupal project'
2 arguments:
3   profile: 'Drupal Profile to be installed'
4   langcode: 'Drupal language'
5   db-type: 'Drupal Database type to be used in install'
6   db-file: 'Drupal Database file to be used in install'
7   site-name: 'Drupal site name'
8   site-mail: 'Drupal site mail'
9   account-name: 'Drupal administrator account name'
10   account-mail: 'Drupal administrator account mail'
11   account-pass: 'Drupal administrator account password'
12   force: 'Force to reinstall the site'
13 questions:
14   profile: 'Select Drupal profile to be installed'
15   langcode: 'Select language for your Drupal installation'
16   db-type: 'Select Drupal Database type to be used in install'
17   site-name: 'Provide your Drupal site name'
18   site-mail: 'Provide your Drupal site mail'
19   account-name: 'Provide your Drupal administrator account name'
20   account-mail: 'Provide your Drupal administrator account mail'
21   account-pass: 'Provide your Drupal administrator account password'
22 suggestions:
23   site-name: 'My awesome site'
24 messages:
25   installing: 'Starting Drupal 8 install process'
26   installed: 'Your Drupal 8 installation was completed successfully'
27   using-current-database: 'Using "%s" database with name "%s" and user "%s"'
28   already-installed: 'Drupal is already installed, try dropping your database executing database:drop or install executing site:install --force --no-interaction'
29   sites-backup: 'The sites.php file has temporarily been renamed to backup.sites.php while Drupal installs.'
30   sites-restore: 'The backup of sites.php has been been restored to sites.php.'
31   invalid-multisite: 'Invalid multisite, please create multisite using command drupal multisite:new "%s" "%s"'
32 examples:
33   - description: 'Install a drupal project specifying installation type, language code, database configuration, site name, site email and admin credential settings'
34     execution: |
35       drupal site:install  standard  \
36         --langcode="en"  \
37         --db-type="mysql"  \
38         --db-host="127.0.0.1"  \
39         --db-name="drupal8"  \
40         --db-user="u53rn4m3"  \
41         --db-pass="dbp455"  \
42         --db-port="3306"  \
43         --site-name="Drupal 8"  \
44         --site-mail="admin@example.com"  \
45         --account-name="admin"  \
46         --account-mail="admin@example.com"  \
47         --account-pass="p455w0rd"
48