A to-do app based on Leo Babauta's ultimate simple productivity system Zen To Done. Built with Bradypodion.js, AngularJS and Hoodie.
brew update
brew install git
brew install node
brew install couchdb
sudo apt-get update
sudo apt-get install couchdb git
tar -xvf node-v0.10.10.tar.gz
cd node-v0.10.10
./configure
make && sudo make install
sudo apt-get update
sudo apt-get install couchdb-bin git
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs
sudo yum install couchdb git nodejs npm
On Windows, install Node.js, git and CouchDB using the installers on each website.
npm install -g grunt-cli hoodie-cli bower
npm install
bower install
Build the App and start Hoodie
grunt build
hoodie start
Start Hoodie and serve a development version of the App with Livereload.
grunt serve
Releasing a new version is automated with grunt release
.
You may add flags to specify the new version.
grunt release
orgrunt release:patch
: 0.0.1 => 0.0.2grunt release:minor
: 0.0.2 => 0.1.0grunt release:major
: 0.1.0 => 1.0.0
The app will then automatically be deployed to nodejitsu once the TravisCI build passes. The current version is and the build is .
Stephan Bönnemann |