This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @codingStandardsIgnoreFile | |
*/ | |
/** | |
* Database configurations. | |
*/ | |
$databases['default']['default'] = array ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (file_exists($app_root . '/' . $site_path . '/settings.local.php')) { | |
include $app_root . '/' . $site_path . '/settings.local.php'; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd /PATH/TO/SITE | |
echo "Pulling latest copy of master branch..." | |
git pull origin master | |
echo "Installing dependencies" | |
composer install | |
echo "Synchronizing configurations" | |
drush cim -y --verbose | |
echo "Rebuilding cache" |
OlderNewer