Last active
June 30, 2016 13:28
-
-
Save iaserrat/afd3e0c89622a0d01df811b661743365 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
# Install RVM With Ruby | |
\curl -sSL https://get.rvm.io | bash -s stable --ruby | |
# Install Ruby 2.3.0 | |
rvm install 2.3.0 | |
rvm gemset create cpmx | |
rvm gemset use cpmx | |
# Install frontend tools | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.2/install.sh | bash | |
nvm install v6.1.0 | |
nvm alias default 6.1.0 | |
npm install -g grunt-cli bower yo generator-karma generator-angular | |
# Install mongodb | |
https://docs.mongodb.com/manual/installation/ | |
# Code repos | |
# Frontend | |
[email protected]:iaserrat/donut-store-webapp.git | |
# Backend API | |
[email protected]:iaserrat/donut-store.git | |
# *Optional* Install Robomongo | |
https://robomongo.org/ | |
# *Optional* Install postman | |
https://www.getpostman.com/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment