Skip to content

Commit

Permalink
Merge pull request #13 from dbalan/ready-0.0.2
Browse files Browse the repository at this point in the history
Update readme for 0.0.2
  • Loading branch information
dbalan committed Mar 15, 2018
2 parents a240a23 + 3784e65 commit 67aa556
Showing 1 changed file with 26 additions and 12 deletions.
38 changes: 26 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,36 +24,50 @@ see: https://github.com/dbalan/pipet/releases


## Configuration
Pipet looks for config file `.pipet.yaml` in the home directory.
Pipet looks for config file `.pipet.yaml` in the home directory. `pipet init` command can generate a new config.

### Sample config

```yaml
document_dir: "<directory-where-files-are-stored>" # default is ~/snippets
editor_binary: "absolute path to editor you want to use" # default is $EDITOR environment variable
```

## Usage

[![asciicast](https://asciinema.org/a/W6tv7bN9z76EAlZJZDS025JwU.png)](https://asciinema.org/a/W6tv7bN9z76EAlZJZDS025JwU)
[![asciicast](https://asciinema.org/a/MR8G05JXEIVY1AvKDrfKNjIEy.png)](https://asciinema.org/a/MR8G05JXEIVY1AvKDrfKNjIEy)

```
Usage:
pipet [command]
Available Commands:
delete Remove snippet from storage (this is irreversible!)
edit edit snippet data
help Help about any command
init Configure pipet
list list all snippets
new Creates a new snippet and opens editor to edit content
search Search through snippets
show display the snippet
Flags:
--config string config file (default is $HOME/.pipet.yaml)
-h, --help help for pipet
-t, --toggle Help message for toggle
- pipet new : create a new snippets
- pipet search : search through current snippets (only titles and tags for now)
- pipet edit id : edit a snippet by id
- pipet show id : show a snippet
- pipet list : list all snippets
- pipet init: inital config.
- pipet delete: delete snippets.
```

## TODO
- [x] finish configure command
- [x] hacking docs
- [x] circleci build
- [x] binary downloads
- [x] make public
- [ ] Search full text, with a flag to search command
- [ ] Try to abstract snippet id from operations.
- [ ] Ability to search full text, with a flag to search command
- [ ] Try to abstract snippet id from operations, one way to do this is to move id's optional for commands and jump to a search interface in case IDs are not specified.
- [ ] Tests, would like more tests.
- [ ] Add an archive flag for search, the data is not deleted, but is not exposed unless user turns on another flag.
- [ ] Add an archive flag for delete, the data is not deleted, but is not exposed unless user turns on another flag.

## Hacking
0. Uses [dep](https://golang.github.io/dep/) for dependency management.
Expand Down

0 comments on commit 67aa556

Please sign in to comment.