Skip to content

Instantly share code, notes, and snippets.

@TopHatCroat
Created August 17, 2020 09:33
Show Gist options
  • Save TopHatCroat/6310ced22b4f144d178a03634a8d99f1 to your computer and use it in GitHub Desktop.
Save TopHatCroat/6310ced22b4f144d178a03634a8d99f1 to your computer and use it in GitHub Desktop.
reev-onboarding-v1
#!/bin/sh
echo "Welcome to reev application installer :)"
read -p "Are you developer (yes, no): " ANSWER
# Install HomeBrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
# Install Slack
brew cask install slack
# Install 1pw
brew cask install 1password
# Install Chrome
brew cask install google-chrome
if [ ${ANSWER} == "yes" ]; then
# Install Git
brew install git
# Install Yarn
brew install yarn
# Install Gradle
brew install gradle
# Install Java
brew tap AdoptOpenJDK/openjdk
brew cask install adoptopenjdk11
# Install iTerm2
brew cask install iterm2
# Install Postman
brew cask install postman
# Install Tunnelblick
brew cask install tunnelblick
# Install Go2Shell
brew cask install go2shell
# Install Intellij IDEA
brew cask install intellij-idea
git clone https://github.com/emonvia/e-mobility.git ~/Developer/e-mobility
fi
echo "Everything is okay, grab a coffee then start working :)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment