Skip to content

Commit

Permalink
feat(app): Install rethinkdb
Browse files Browse the repository at this point in the history
Fixes #30
  • Loading branch information
thaiat committed Jun 9, 2015
1 parent 468555d commit 5f2bb61
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ inquirer_software() {
"iTerm2" "iTerm2" on
"LimeChat" "LimeChat" on
"Mongo" "Mongodb" on
"Rethinkdb" "Rethinkdb" on
"Skype" "Skype" on
"Slack" "Slack" on
"Spectacle" "Spectacle" on
Expand Down Expand Up @@ -283,9 +284,17 @@ if ([[ $choice == *"all"* ]] || [[ $choice == *"Mongo"* ]]); then
chown -R `whoami` /data
echo_title "END INSTALLING MONGO"
fi

############ MONGO ############

############ RETHINKDB ############
if ([[ $choice == *"all"* ]] || [[ $choice == *"Rethinkdb"* ]]); then
echo_title "END INSTALLING RETHINKDB"
brew install rethinkdb
ln -sfv /usr/local/opt/rethinkdb/*.plist ~/Library/LaunchAgents
echo_title "END INSTALLING RETHINKDB"
fi
############ RETHINKDB ############

############ NVM ############
echo_title "BEGIN INSTALL NVM"
curNodeVersion=$(node --version)
Expand Down

0 comments on commit 5f2bb61

Please sign in to comment.