Probably the most ridiculous list you've ever seen.
INSTALLATION
install node dependancies
npm install
start the server
npm start
USAGE
currently, you manage tasks using the console in your browser.
adding a task
todoAPI.addItem({
"title" : "short description",
"para" : "this is a much longer description for this task",
"assigned" : "@joel + @jack"
});
remove a task
todoAPI.removeDoneItem(item_id);
todoAPI.removeDoingItem(item_id);
CONFIGURATION
RIDICULIST is ridiculous, right out of the box, but if you want to take it to the next level you can configure a ver settings.
successText
a message, chosen at random, that is shown everytime you complete a task
successText: ["win!", "eff yeah", "shots!"]
successAudio
a track, chosen at random, that is played everytime you complete a task
successAudio: ["final-countdown", "Shots!"]
winText
a message that is displayed when you complete the list
winText: "MONEY!"
winAudio
a track that is played when you complete the list
winAudio: "final-countdown"

