https://github.com/matsubara0507/taskpad
Tool for task management in Haskell
https://github.com/matsubara0507/taskpad
haskell haskell-application
Last synced: 10 months ago
JSON representation
Tool for task management in Haskell
- Host: GitHub
- URL: https://github.com/matsubara0507/taskpad
- Owner: matsubara0507
- License: mit
- Created: 2018-04-21T15:24:40.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-23T13:32:46.000Z (over 7 years ago)
- Last Synced: 2025-02-02T18:46:58.674Z (12 months ago)
- Topics: haskell, haskell-application
- Language: Haskell
- Homepage:
- Size: 25.4 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# TaskPad
Tool for task management in Haskell
## Generate task file
example:
```
$ cat 20180504.yaml
memo: []
tasks:
1:
done: true
children: []
name: hello
4:
done: false
children: []
name: てすと
2:
done: true
children: []
name: world
3:
done: false
children: []
name: hahaha
date: '20180504'
```
## CLI
```
$ taskpad --help
taskpad - operate daily tasks
Usage: taskpad [-v|--verbose] [-d|--date DATE] COMMAND [--version]
Available options:
-v,--verbose Enable verbose mode: verbosity level "debug"
-d,--date DATE Task's date
--version Show version
-h,--help Show this help text
Available commands:
new Create a new task file. Note: if don't use --date
option then use today's date.
add Add Task
done Done Task
tasks Show Tasks
```