Created
April 29, 2012 10:50
-
-
Save deciob/2549334 to your computer and use it in GitHub Desktop.
Setting up spinejs in Linux Mint 12 (and possibly ubuntu)
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
# Setting up spinejs in Linux Mint 12 | |
# Node Version Manager (see: https://github.com/creationix/nvm) | |
sudo apt-get install curl build-essential libssl-dev #dependencies | |
git clone git://github.com/creationix/nvm.git ~/src/nvm | |
. ~/src/nvm/nvm.sh #should add this to your ~/.bashrc | |
# Node.js | |
nvm install v0.6.15 | |
nvm use v0.6.15 | |
# Spine and hem | |
npm install -g spine.app hem | |
# At this point suppose you want to create a spine project called my_app in ~/ | |
cd && spine app my_app && cd my_app && npm install . # this last command will install the dependencies listed in package.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment