Skip to content

Instantly share code, notes, and snippets.

@smorris93
Last active May 24, 2017 06:29
Show Gist options
  • Save smorris93/651afb7cde346a291dd4 to your computer and use it in GitHub Desktop.
Save smorris93/651afb7cde346a291dd4 to your computer and use it in GitHub Desktop.
Uses Chocolatey to download and install jhipster and its dependencies.
@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