Skip to content

Instantly share code, notes, and snippets.

View tanmayk's full-sized avatar
🎯
Focusing

Tanmay Khedekar tanmayk

🎯
Focusing
  • Opensource Seed
  • India
View GitHub Profile
<?php
/**
* @codingStandardsIgnoreFile
*/
/**
* Database configurations.
*/
$databases['default']['default'] = array (
if (file_exists($app_root . '/' . $site_path . '/settings.local.php')) {
include $app_root . '/' . $site_path . '/settings.local.php';
}
#!/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"