https://github.com/dextryz/todo
A nostr TODO list management system
https://github.com/dextryz/todo
nostr todo
Last synced: 7 months ago
JSON representation
A nostr TODO list management system
- Host: GitHub
- URL: https://github.com/dextryz/todo
- Owner: dextryz
- License: mit
- Created: 2024-02-05T15:16:34.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-06T21:07:49.000Z (over 2 years ago)
- Last Synced: 2024-06-19T16:14:29.668Z (about 2 years ago)
- Topics: nostr, todo
- Language: Go
- Homepage:
- Size: 4.32 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TODO
A todo list management system leveraging the [nostr](www.nostr.com) protocol.
## Setup
Create a config file at `~/.config/nostr/todo.json`
```
{
"relays": ["wss://relay.damus.io/"],
"nsec": "nsec..."
}
```
Add environment variable to point to configuration
```shell
export NOSTR_TODO=$HOME/.config/nostr/todo.json
```
Build the binay
```shell
make build
```
## Usage
```shell
> todo add food Steak
Creating new list: food
> todo add food Butter
> todo list food
b1f19350-86d9-4caa-8989-660dcd98df55 (2024-02-05): [ ] Steak
57de7e02-8a1e-4d38-bd6e-53b28ed6e876 (2024-02-05): [ ] Butter
> todo done food b1f19350-86d9-4caa-8989-660dcd98df55
> todo list food
b1f19350-86d9-4caa-8989-660dcd98df55 (2024-02-05): [X] Steak
57de7e02-8a1e-4d38-bd6e-53b28ed6e876 (2024-02-05): [ ] Butter
> todo done food b1f19350-86d9-4caa-8989-660dcd98df55
> todo list food
b1f19350-86d9-4caa-8989-660dcd98df55 (2024-02-05): [ ] Steak
57de7e02-8a1e-4d38-bd6e-53b28ed6e876 (2024-02-05): [ ] Butter
```