-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
You can now set up an engineer or designer machine.
- Loading branch information
Brian Kelly and Joshua Franklin
committed
Mar 11, 2016
1 parent
0928d6a
commit 560756e
Showing
14 changed files
with
102 additions
and
39 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
setup.log | ||
.DS_Store | ||
.idea | ||
*.iml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
pairs: | ||
bk: Brian Kelly; bkelly | ||
ah: Ashraf Hanafy; ahanafy | ||
jf: Joshua Franklin; jfranklin | ||
|
||
email: | ||
prefix: pair | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Fail immediately if any errors occur | ||
set -e | ||
|
||
SCRIPTS_DIR="$(dirname "$0")/scripts" | ||
|
||
${SCRIPTS_DIR}/setup.sh designer |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Fail immediately if any errors occur | ||
set -e | ||
|
||
SCRIPTS_DIR="$(dirname "$0")/scripts" | ||
|
||
${SCRIPTS_DIR}/setup.sh engineer | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
echo | ||
echo "Installing Designer applications" | ||
|
||
# Graphic editing tools | ||
|
||
brew cask install adobe-creative-cloud | ||
brew cask install sketch | ||
|
||
# Screen recording tools | ||
|
||
brew cask install recordit | ||
brew cask install skitch | ||
brew cask install licecap | ||
brew cask install screenflow | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
echo | ||
echo "Installing Cloud Foundry Command-line Inteface" | ||
echo "Installing Cloud Foundry Command-line Interface" | ||
brew tap cloudfoundry/tap | ||
brew install cf-cli |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
echo | ||
echo "Done!" | ||
|
||
echo | ||
echo "After checking the above output for any problems, start a new iTerm session to make use of all the tools that have been installed." | ||
echo "Additionally, the results of this setup have been stored in setup.log for review." | ||
|
||
echo | ||
|
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
echo | ||
echo "You need to agree to the Xcode Software License Agreement" | ||
echo "You will need to enter your password first." | ||
echo "Then, when the agree comes up, press 'q' to jump to the end and then type 'agree' and press return" | ||
echo | ||
|
||
sudo xcodebuild -license |