Skip to content

Instantly share code, notes, and snippets.

@nirlanka
Last active July 13, 2019 07:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nirlanka/b29ff94236c05c929f6e2cef798f8f21 to your computer and use it in GitHub Desktop.
Save nirlanka/b29ff94236c05c929f6e2cef798f8f21 to your computer and use it in GitHub Desktop.
Install dev-env for MicroBuild
# Install Chrome
choco install googlechrome -y
# Install Slack
choco install slack -y
# Install other packages
choco install nvm -y
# Install NodeJS
nvm install 8.11.4
nvm install 12.6.0
nvm use 12.6.0
# Install Angular
npm install -g @angular/cli
# Install Ionic
npm install -g ionic@3.9.2
# Install VSCode
choco install vscode -y
# Install SublimeText 3
choco install sublimetext3 -y
choco install sublimetext3.packagecontrol -y
# Install Git
choco install git -y
# Install Git Fork app
choco install git-fork -y
# Install Robo Mongo (Robo 3T)
choco install robo3t.install -y
# Install Postman
choco install postman -y
# Install FireFox
choco install firefox -y
# Install Skype
choco install skype -y
# Install Chocolatey
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
# Install Visual Studio
choco install visualstudio2017community -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment