https://github.com/gfarrell/todojure
Classic todo-app implementation in clojure (gtf is learning clojure)
https://github.com/gfarrell/todojure
Last synced: 3 months 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 (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-07T20:06:00.000Z (almost 8 years ago)
- Last Synced: 2025-01-17T07:09:16.340Z (5 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 😉.