Skip to content

Instantly share code, notes, and snippets.

@garguelles
Created October 2, 2016 11:38
Show Gist options
  • Save garguelles/eaa57a3dd34a3326c6aa25446e60a521 to your computer and use it in GitHub Desktop.
Save garguelles/eaa57a3dd34a3326c6aa25446e60a521 to your computer and use it in GitHub Desktop.
Install meteor 1.3+ in codeship
# You can use nvm to install any Node.js (or io.js) version you require.
nvm install 4.5.0
nvm use 4.5.0
#install meteor normally
curl -o meteor_install_script.sh https://install.meteor.com/
chmod +x meteor_install_script.sh
sed -i "s/type sudo >\/dev\/null 2>&1/\ false /g" meteor_install_script.sh
./meteor_install_script.sh
export PATH=$PATH:~/.meteor/
# install deps
meteor npm install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment