Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gfarrell/todojure
Classic todo-app implementation in clojure (gtf is learning clojure)
https://github.com/gfarrell/todojure
Last synced: 13 days ago
JSON representation
Classic todo-app implementation in clojure (gtf is learning clojure)
- Host: GitHub
- URL: https://github.com/gfarrell/todojure
- Owner: gfarrell
- Created: 2017-08-06T22:36:20.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-07T20:06:00.000Z (over 7 years ago)
- Last Synced: 2024-11-16T14:11:39.496Z (2 months ago)
- Language: Clojure
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# todo
Classic todo list app implementation in clojure
## Installation
`lein uberjar`
## Usage
$ java -jar todo-0.1.0-standalone.jar [title]
### Params
* `cmd`: the command to execute, can be `add`, `del` or `list`
* `title`: title of the todo on which to operate (for `add` or `del`)## Notes
Freaks out unless `./todojure.txt` exists for it to use as storage. Next task is
to fix this 😉.