https://github.com/limansky/rednext
Dummy random task organizer
https://github.com/limansky/rednext
Last synced: 5 months ago
JSON representation
Dummy random task organizer
- Host: GitHub
- URL: https://github.com/limansky/rednext
- Owner: limansky
- Created: 2025-10-13T18:59:02.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2025-10-30T18:35:58.000Z (9 months ago)
- Last Synced: 2025-10-30T20:32:27.079Z (9 months ago)
- Language: Rust
- Size: 50.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
rednext
=======
[](https://github.com/limansky/rednext/actions/workflows/ci.yml)
Rednext is a simple random task list organizer.
Currently it supports only SQLite as a backend database, but more databases very possible will be added in the future.
Basic usage
-----------
To create a new task list database, run:
```bash
rednext new mytasks
```
You will be asked for the database structure. Any database have to have at least one field. You can also specify CSV file
to import tasks from. You can also import data later using `rednext items mytasks import ` command.
Now you can manage your items in the database. For example to add a new item to the task list, run:
```bash
rednext items mytasks add
```
To see all items in the database, and the completion progress, run:
```bash
rednext items mytasks list
```
To get a random item from the task list, run:
```bash
rednext items mytasks get-random
```
You can also mark items as done or undone:
```bash
rednext items mytasks get
```
For more commands and options, run:
```bash
rednext --help
```