aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 10097d789e4429bf0a992ea01b83a587b0940b6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# toradora - A terminal based todo list

## Getting started

**Requirements**

1. sqlite library
2. make
3. gcc/clang

**Compiling**

```bash
make
```

**Installing**

```bash
make install
```

**Uninstalling**

``` bash
make uninstall
```

## /** FEATURES **/
  1. Able to add tasks. (toradora -a "The task I want to add")
  2. Able to complete those tasks. (toradora -c 1 )
  3. Able to edit those tasks. (toradora -e 1 "The previous task edited")
  4. Able to manifest those tasks. (toradora)
 > ===============================
 
 > |>>> Today's Task <<<
 
 > |1. "task one"
 
 > |2. "task two"
 
 > |>>> Backlogs <<<
 
 > |3. "task three"
 
 > |===============================

  5. Able to manifest all the tasks in database. (toradora -z)

## Notes

The DB is currently stored at `~/.toradora.db`