#retrospective
A retrospective tool
##Database ###Setup http://www.elasticsearch.org/download/
The easiest way is to download the tar.gz and run the binary.
cd /opt
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.7.tar.gz
tar -xvf elasticsearch-0.90.7.tar.gz###Run
cd elasticsearch-0.90.7/bin
./elasticsearch##Service
# create and update config file
cp service/config.json.example service/config.json
cd service
npm install
cd service/bin
node create.js
cd -
npm start >logs/output.log 2>logs/error.log &###Post a ticket
curl -XPOST --header 'Content-Type: application/json' -d '{
"role" : "con",
"message" : "We didn't drink enough coffee!!",
"createdAt": "2013-12-06T09:44:49.258Z",
}' http://localhost:3000/retrospectives/LUu3vCumSw6RXkcoG8PP9g###Unit-test
cd service
npm install -g mocha
mocha##Static
Requires global install of bower and grunt-cli
npm install -g bower
npm install -g grunt-cliAnd Compass
gem install compasscd static
npm install
bower install
grunt compass
cd app/scripts
cp config.js.example config.jsEdit the config to suit
cd -
grunt server