Last active
November 13, 2021 17:09
-
-
Save fabiojb/874db9f590e6463c1bcd23b35526f70c to your computer and use it in GitHub Desktop.
Instalação do ambiente Windows para desenvolvimento back-end Java, com as principais ferramentas necessárias e alguns adicionais
This file contains hidden or 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
:: chocolatey install | |
powershell -c "Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" | |
:: scoop install | |
powershell -c "Set-ExecutionPolicy RemoteSigned -scope CurrentUser; iex (new-object net.webclient).downloadstring('https://get.scoop.sh')" | |
choco feature enable -n allowGlobalConfirmation | |
:: essentials | |
choco install openjdk | |
choco install git | |
choco install maven | |
choco install vscode | |
choco install notepadplusplus | |
choco install intellijidea-community | |
choco install docker | |
choco install googlechrome | |
choco install ditto | |
choco install lightshot | |
scoop install zip | |
scoop install unzip | |
:: extended | |
choco install mockoon | |
choco install dbeaver | |
choco install robo3t | |
choco install slack | |
choco install mobaxterm | |
choco install gradle | |
choco install mongodb | |
choco install nodejs | |
choco install python | |
choco install pycharm-community | |
:: WhatPulse is missing... | |
:: optionals | |
::choco install heroku-cli | |
::choco install skype | |
::choco install zoom | |
::scoop install jq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment