Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
abarnhard committed Aug 7, 2014
1 parent 7caeb81 commit 5fd7bcf
Showing 1 changed file with 65 additions and 4 deletions.
69 changes: 65 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,65 @@
task-master
===========
[![Build Status](https://travis-ci.org/mfbadr/task-master.svg)](https://travis-ci.org/mfbadr/task-master)
[![Coverage Status](https://coveralls.io/repos/mfbadr/task-master/badge.png)](https://coveralls.io/r/mfbadr/task-master)
Task Master
=========
### Code Badges
[![Build Status](https://travis-ci.org/ABarnhard/task-master.svg)](https://travis-ci.org/ABarnhard/task-master)
[![Coverage Status](https://coveralls.io/repos/ABarnhard/task-master/badge.png)](https://coveralls.io/r/ABarnhard/task-master)

### About
Task Master is is a simple To Do list manager built on MongoDB and Node. It is a massive upgrade from Task Manager,
however we still won't allow you to delete tasks. That's just how we roll.
### Models
```
Priority
--------------
name
color
value
--------------
-.collection
--------------
#save
--------------
.all
.findById
```

```
Task
--------------
name
due
photo
isComplete
tags
priorityId
--------------
-.collection
--------------
#save
--------------
.update
.findById
.count
.find3
```

### Features
- Object Oriented
- MVC
- TDD
- Mocha
- MongoDB
- Jade
- Express

### Running Tests
```bash
$ npm install
$ npm test
```

### Contributors
- [Adam Barnhard](https://github.com/abarnhard)

### License
[MIT](LICENSE)

0 comments on commit 5fd7bcf

Please sign in to comment.