Meteor + CodeShip + Modulus
问题 Can anyone recommend a good setup script to deploy to Modulus after passing tests? Right now I'm using: nvm install 0.10.28 nvm use 0.10.28 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/ meteor --version Which is basically what I've managed to copy + paste around the interwebz and I have no idea what I'm doing.