Skip to content

Instantly share code, notes, and snippets.

@barodeur
Created December 13, 2012 13:15
Show Gist options
  • Save barodeur/4276326 to your computer and use it in GitHub Desktop.
Save barodeur/4276326 to your computer and use it in GitHub Desktop.
Class resources for tIIch WEB, ENSIIE Strasbourg 2012

tIIch WEB - ENSIIE Strasbourg 2012

Préparation de l'environement

Je recomande aux utilisateurs de OS X d'utiliser le gestionnaire de paquets homebrew. Vous pouvez installer homebew avec la commande suivante:

!! OS X seulement !!

ruby -e "$(curl -fsSkL raw.github.com/mxcl/homebrew/go)"

Installation de GIT

Ubuntu

sudo apt-get install git

OS X

brew install git

Configuration de GIT & github

Nom et email

git config --global user.name "Votre Nom"
git config --global user.email "[email protected]"

Clé ssh

if [ ! -f ~/.ssh/id_rsa ]; then ssh-keygen; fi

Github

Installation de node.js

Ubuntu

sudo apt-get install python-software-properties
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs npm

Vous pouvez maintenant tester nodejs

$ nodejs -v
v0.6.5

La plupart des programmes nodejs vont chercher une executable node, je vous conseille donc de faire

sudo ln -s `which nodejs` /usr/bin/node

Vous pouvez finalement tester la commande node

$ node -v
v0.6.5

OS X

brew install node

Installation de redis

Ubuntu

sudo apt-get install redis-server

OS X

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