-
Notifications
You must be signed in to change notification settings - Fork 250
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add setup #286
Closed
Closed
Add setup #286
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,3 @@ | ||
# Shared setup initialization | ||
|
||
WORKSTATION_SETUP_HOME="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" |
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,24 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# add_setup.sh: run the RxRevu workstation setup | ||
# | ||
# Arguments: | ||
# - a list of components to install, see scripts/opt-in/ for valid options | ||
|
||
# Fail immediately if any errors occur | ||
set -e | ||
|
||
source ${WORKSTATION_SETUP_HOME}/_init.sh | ||
|
||
# For each command line argument, try executing the corresponding script in opt-in/ | ||
for var in "$@" | ||
do | ||
echo "$var" | ||
FILE=${WORKSTATION_SETUP_HOME}/scripts/opt-in/${var}.sh | ||
echo "$FILE" | ||
if [ -f $FILE ]; then | ||
source ${FILE} | ||
else | ||
echo "Warning: $var does not appear to be a valid argument. File $FILE does not exist." | ||
fi | ||
done |
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,32 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# base_setup.sh: run only the initial RxRevu workstation setup. | ||
# Should only need to be run once. | ||
|
||
# Fail immediately if any errors occur | ||
set -e | ||
|
||
source ${WORKSTATION_SETUP_HOME}/_init.sh | ||
|
||
echo "Caching sudo password..." | ||
sudo -K | ||
sudo true; | ||
clear | ||
|
||
# Note: Homebrew needs to be set up first | ||
source ${WORKSTATION_SETUP_HOME}/scripts/common/homebrew.sh | ||
source ${WORKSTATION_SETUP_HOME}/scripts/common/configuration-bash.sh | ||
|
||
# Place any applications that require the user to type in their password here | ||
brew install --cask github | ||
brew install --cask zoomus | ||
|
||
source ${WORKSTATION_SETUP_HOME}/scripts/common/zprofile-setup.sh | ||
source ${WORKSTATION_SETUP_HOME}/scripts/common/asdf.sh | ||
source ${WORKSTATION_SETUP_HOME}/scripts/common/git.sh | ||
source ${WORKSTATION_SETUP_HOME}/scripts/common/git-aliases.sh | ||
source ${WORKSTATION_SETUP_HOME}/scripts/common/applications-common.sh | ||
source ${WORKSTATION_SETUP_HOME}/scripts/common/unix.sh | ||
source ${WORKSTATION_SETUP_HOME}/scripts/common/configuration-osx.sh | ||
source ${WORKSTATION_SETUP_HOME}/scripts/common/configurations.sh | ||
source ${WORKSTATION_SETUP_HOME}/scripts/common/redis.sh | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you remove redis.sh? We don't have this file either. |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
echo | ||
echo "Installing dotnet requirements" | ||
brew install --cask dotnet dotnet-sdk | ||
source ${MY_DIR}/scripts/opt-in/dotnet-tools.sh | ||
source ${WORKSTATION_SETUP_HOME}/scripts/opt-in/dotnet-tools.sh | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 for this name change. |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
echo | ||
echo "Installing most recent version of Java" | ||
brew install --cask java | ||
source ${MY_DIR}/scripts/opt-in/java-tools.sh | ||
source ${WORKSTATION_SETUP_HOME}/scripts/opt-in/java-tools.sh |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you remove zprofile-setup.sh and asdf.sh? Neither of these are in your PR nor our current repo.