A tool for the prioritisation of tasks based on Eisenhower Desicion Matricies.
Created as a part of the CO600 Module submission by William Duyck and Eliot Brown, at the University of Kent.
Eisenhower decision matrices split tasks by urgency and importance. This is a modified version of the original boxes and uses directed graphs.
Make sure you have both grunt and bower installed.
npm install -g grunt-cli bower
Once installed clone this repository and run:
npm install && grunt
This will install all the required dependencies, and start the development server
which should now be running on port 4321.
Looking for some documentation? There are pleanty of code comments throughout the source, however you can also generate something a little easier to digest if you have jsdoc installed by running:
jsdoc -c .jsdocrc
This will generate the regular API documentation (in /docs) that explains the
methods and modules of the project.
// coming soon
Where possible use an EditorConfig compatible editor/plugin.
- Remove trailing whitespace from files.
- Use ASCII filenames.
- Run
grunt testbefore commit and check for errors.
Do this all with ease!
mv .git/hooks/pre-commit.sample .git/hooks/pre-commit
echo "\n# run grunt build before commit, abort if errors\ngrunt test" >> .git/hooks/pre-commit
Unless otherwise stated: This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.