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/sh | |
# | |
# @author Matt Korostoff <mkorostoff@gmail.com> | |
# | |
# @internal | |
# | |
# @category | |
# | |
# @copyright Licensed under the GNU General Public License as published by the Free | |
# Software Foundation, either version 3 of the License, or (at your option) | |
# any later version. http://www.gnu.org/licenses/ | |
#Install site | |
sudo rm /Users/matt/Sites/nbcsports.local/docroot/sites/default/settings.php | |
cd /Users/matt/Sites/nbcsports.local/docroot | |
sudo drush si nbcs -y --site-name='NBC Sports (dev)' --account-name=admin --account-pass=redacted --db-url=mysql://root@127.0.0.1:3306/nbcsports | |
#Import videos | |
drush eval "if(function_exists('nbcs_video_on_demand_import_videos')) { nbcs_video_on_demand_import_videos(); }" | |
#Run tests | |
cd /Users/matt/Sites/nbcsports.local/tests/behat | |
sudo vendor/bin/behat | |
##Login | |
cd /Users/matt/Sites/nbcsports.local/docroot | |
drush en -y auto_login_url | |
url=$(drush eval "print auto_login_url_create(1, 'node', 1);" | sed 's/default/nbcsports.local:9999/g') | |
open -a "/Applications/Google Chrome.app" "${url}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment