Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #725 from danbohea/master
Browse files Browse the repository at this point in the history
Clearer comments: required vars in default.config sounded optional
  • Loading branch information
geerlingguy committed Jun 12, 2016
2 parents 5cb3df2 + 460e40c commit 5868cdb
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions default.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,20 @@ drupal_composer_project_options: "--prefer-dist --stability dev --no-interaction
# settings below), but instead copy down a database (e.g. using drush sql-sync).
install_site: true

# Settings for installing a Drupal site (if 'install_site:' is 'true').
drupal_major_version: 8
# Required Drupal settings.
drupal_core_path: "{{ drupal_composer_install_dir }}/web"
drupal_mysql_user: drupal
drupal_mysql_password: drupal
drupal_mysql_database: drupal

# Settings for installing a Drupal site if 'install_site:' is 'true'.
drupal_major_version: 8
drupal_domain: "{{ vagrant_hostname }}"
drupal_site_name: "Drupal"
drupal_install_profile: standard
drupal_enable_modules: [ 'devel' ]
drupal_account_name: admin
drupal_account_pass: admin
drupal_mysql_user: drupal
drupal_mysql_password: drupal
drupal_mysql_database: drupal

# Additional arguments or options to pass to `drush site-install`.
drupal_site_install_extra_args: []
Expand Down

0 comments on commit 5868cdb

Please sign in to comment.