Last active
December 28, 2015 01:39
-
-
Save lincolndbryant/7422658 to your computer and use it in GitHub Desktop.
work.scpt
This file contains hidden or 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
tell application "Terminal" | |
activate | |
do script "cd ~/dev/src/Content3/content_web/content_web" | |
do script "workon content" in front window | |
do script "sh admin.sh local runserver" in front window | |
my makeTab() | |
do script "cd ~/dev/src/Content3/content_web/content_web/public" in tab 2 of front window | |
do script "workon content" in tab 2 of front window | |
do script "sh admin.sh local runserver localhost:8001" in tab 2 of front window | |
my makeTab() | |
do script "cd ~/dev/src/hubspot_static_daemon" in tab 3 of front window | |
do script "./hs-static run" in tab 3 of front window | |
my makeTab() | |
do script "cd ~/dev/src/Content3" in tab 4 of front window | |
do script " sudo vee" in tab 4 of front window | |
end tell | |
on makeTab() | |
tell application "System Events" to keystroke "t" using {command down} | |
delay 0.2 | |
end makeTab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment