Skip to main content

Installing the TheMAG on Thunder

  1. Unzip the INSTALLATION/themag-thunder-project.zip to your development environment.
  2. The package provides a ready-made composer.json file which will install all you need to kick-start your composer-managed Thunder site. Run the composer install command from inside "themag-thunder-project" directory. Composer installs Drupal itself in the "docroot" directory (themag-thunder-project/docroot). Consider that on a production environment you have to configure your domain to point in that directory.
cd themag-thunder-project

composer install
  1. You need to use Drush to install TheMAG on Thunder. Run the following Drush command:
vendor/bin/drush site:install thunder \
--existing-config \
--db-url=mysql://db_user:db_password@localhost/db_name \
--account-name="demo" \
--account-pass="demo" \
--account-mail="your@email.com" \
thunder_module_configure_form.install_modules_thunder_demo=NULL
info

Replace db_user, db_pass, and db_name with your database info. The --account-name is your Drupal username, and the --account-pass is the password.

  1. When installation finishes, you can install the demo content:
vendor/bin/drush en -y themag_thunder_demo