Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
abarnhard committed Aug 26, 2014
1 parent 264c458 commit 977a051
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 13 deletions.
37 changes: 24 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,41 @@
## Life Coach
### Code Badges
[![Build Status](https://travis-ci.org/ABarnhard/life-coach.svg)](https://travis-ci.org/ABarnhard/life-coach)
[![Coverage Status](https://coveralls.io/repos/ABarnhard/life-coach/badge.png)](https://coveralls.io/r/ABarnhard/life-coach)

### About
An app for people trying to get their lives together

### Models
```
Model 1
prop-a
prop-b
.classMethod-c
#instanceMethod-d
User
--------
_id
email
password
--------
.register
.login
```

```
Model 2
prop-e
prop-f
.classMethod-g
#instanceMethod-h
Goal
--------
_id
name
due
tags
userId
--------
.create
.findAllByUserId
```

### Features
- feature 1
- feature 2
- feature 3
- Sessions
- OOP
- Acceptance & Unit testing
- Chalk

### Running Tests
```bash
Expand Down
20 changes: 20 additions & 0 deletions app/views/goals/index.jade
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
extends ../shared/template
block content
h2 Your Goals:
.panel.panel-default
.panel-body
table.table
thead
tr
th Name
th Due
th Tags
tbody
each goal in goals
tr
td= goal.name
td= moment(goal.due).format('ll')
td= goal.tags

block scripts

0 comments on commit 977a051

Please sign in to comment.