Skip to content

Instantly share code, notes, and snippets.

@rajanand02
Created May 14, 2015 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rajanand02/a9e744806ee89bea07b1 to your computer and use it in GitHub Desktop.
Save rajanand02/a9e744806ee89bea07b1 to your computer and use it in GitHub Desktop.
FSFTN Summer Camp 2015 Meteor Installation instruction.

FSFTN Summer Camp 2015 Meteor Installation instructions

Install node via NVM

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.25.1/install.sh | bash

nvm install 0.12.3

nvm use 0.12.3

Download and install meteor

curl https://install.meteor.com/ | sh

####Install required packages

core packages

meteor add accounts-password accounts-github accounts-facebook accounts-google accounts-twitter accounts-ui coffeescript service-configuration

Third party packages

meteor add iron:router twbs:bootstrap mrt:moment fourseven:scss msavin:mongol

Install cordova support

sudo apt-get update; sudo apt-get install --yes openjdk-7-jdk lib32z1 lib32stdc++6

Install Android sdk

meteor install-sdk android

Install MongoDB

Import public key

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10

Create a list file for MongoDB

echo "deb http://repo.mongodb.org/apt/ubuntu "$(lsb_release -sc)"/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.0.list

Reload local package database

sudo apt-get update

Install the MongoDB packages

sudo apt-get install -y mongodb-org

@aravindgd
Copy link

echo "deb http://repo.mongodb.org/apt/ubuntu wheezy/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.0.list

@rajanand02
Copy link
Author

@aravindgd : lsb_release -sc should return the distro base name..i.e it would return wheezy in this case

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment