awd-studio/drupal-install-cli

Provide a command for installing drupal with Drush from the command line

v0.2.0 2018-03-17 01:56 UTC

This package is auto-updated.

Last update: 2024-04-08 06:29:41 UTC


README

Provide a command for installing drupal with drush from the command line

This package should be used with one of Drupal Composer project.

Drupal Install CLI Screenshot

For now, plugin can install sites only with Drush, so it must be required in your project.

Requirements

Install

Via Composer

composer require awd-studio/drupal-install-cli

Or add a dependency on awd-studio/drupal-install-cli to your project’s composer.json file:

{
    "require": {
        "awd-studio/drupal-install-cli": "dev"
    }
}

Usage:

Just call command from CLI:

vendor/bin/drupal-install-cli drupal:site-install

Answer all questions and it'll be done.

You also may pass the options for configure installation. As example:

vendor/bin/drupal-install-cli drupal:site-install --db-host='localhost' --db-user='[MY_DB_USER]' --db-name='[MY_DB_NAME]' --db-pass='[MY_DB_PASS]'

Available options:

  • --db-host - Database host
  • --db-name - Database name
  • --db-user - Database user name
  • --db-pass - Database user password
  • --profile - Installation profile name
  • --site-name - Your future site name
  • --site-mail - Site E-mail
  • --admin-login - Admin user name
  • --admin-pass - Admin user password
  • --admin-mail - Admin user E-mail