open-nomad/scripts/vagrant-linux-unpriv-ui.sh

19 lines
675 B
Bash
Raw Normal View History

2017-09-19 14:47:10 +00:00
#!/usr/bin/env bash
# Install NVM for simple node.js version management
2020-11-03 02:32:37 +00:00
curl -sSL --fail -o- https://raw.githubusercontent.com/creationix/nvm/v0.36.0/install.sh | bash
2017-09-19 14:47:10 +00:00
# This enables NVM without a logout/login
export NVM_DIR="/home/vagrant/.nvm"
# shellcheck source=/dev/null
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
# Install Node, Ember CLI, and Phantom for UI development
# Use exact full version version (e.g. not 12) for reproducibility purposes
2020-11-12 13:13:51 +00:00
nvm install 12.19.0
nvm alias default 12.19.0
2018-06-11 22:54:43 +00:00
npm install -g ember-cli
2017-09-19 14:47:10 +00:00
# Install Yarn for front-end dependency management
2020-11-03 02:32:37 +00:00
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.22.5