Skip to content
This repository has been archived by the owner on Aug 27, 2018. It is now read-only.
frankrousseau edited this page May 17, 2012 · 4 revisions

Setting up a development environment

install node.js

apt-get install g++ make
wget http://nodejs.org/dist/v0.6.15/node-v0.6.15.tar.gz
tar -xvzf node-v0.6.15.tar.gz
cd node-v0.6.15
./configure
make
sudo make install
cd ..
rm node-v0.6.15.tar.gz
rm -rf node-v0.6.15

Get code and isntall dependencies

git clone [email protected]:mycozycloud/cozy-home.git
cd cozy-home
npm install

Work on backend

supervisor -x coffee -e coffee server.coffee
Clone this wiki locally