Last active
May 24, 2017 06:29
-
-
Save smorris93/651afb7cde346a291dd4 to your computer and use it in GitHub Desktop.
Uses Chocolatey to download and install jhipster and its dependencies.
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
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin | |
choco install -y java.jdk | |
choco install -y git.install | |
choco install -y nodejs | |
choco upgrade -y nodejs.install | |
npm install -g yo | |
npm install -g bower | |
npm install -g grunt-cli | |
npm install -g generator-jhipster |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment