This repository has been archived by the owner on Dec 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
171 additions
and
48 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
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 +1 @@ | ||
0.12.1 | ||
0.13.0 |
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,35 @@ | ||
#!/bin/bash | ||
|
||
# Console colors | ||
red='\033[0;31m' | ||
green='\033[0;32m' | ||
yellow='\033[1;33m' | ||
NC='\033[0m' | ||
|
||
# Homebrew installation | ||
echo -e "${green}Installing Homebrew...${NC}" | ||
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | ||
|
||
# Cask installation | ||
echo -e "${green}Installing Cask...${NC}" | ||
brew install caskroom/cask/brew-cask | ||
|
||
# Update brew formulae | ||
echo -e "${green}Updating brew formulae...${NC}" | ||
brew update | ||
|
||
# VirtualBox installation | ||
echo -e "${green}Installing virtualbox...${NC}" | ||
brew cask install virtualbox | ||
|
||
# Vagrant installation | ||
echo -e "${green}Installing vagrant...${NC}" | ||
brew cask install vagrant | ||
|
||
# Install docker | ||
echo -e "${green}Installing docker...${NC}" | ||
brew install docker | ||
|
||
# Install docker-compose | ||
echo -e "${green}Installing docker-compose...${NC}" | ||
brew install docker-compose |
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,12 @@ | ||
REM Installation chocolatey | ||
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin | ||
|
||
REM Install git, virtualbox, vagrant, docker | ||
choco install git -y | ||
choco install virtualbox -y | ||
choco install vagrant -y | ||
choco install docker -y | ||
|
||
REM Git configuration (proper line endings on Windows and support for long paths) | ||
git config --global core.autocrlf input | ||
git config --system core.longpaths true |
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