Last active
July 13, 2019 07:01
-
-
Save nirlanka/b29ff94236c05c929f6e2cef798f8f21 to your computer and use it in GitHub Desktop.
Install dev-env for MicroBuild
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
# 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 [email protected] | |
# 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 |
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
# 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