Crates.io | flow-cli |
lib.rs | flow-cli |
version | 0.1.1 |
source | src |
created_at | 2023-04-04 22:08:58.522075 |
updated_at | 2023-04-05 14:19:52.703798 |
description | Flow is a useful cli tool to better manage tasks and projects |
homepage | |
repository | https://github.com/DreckSallow/flow |
max_upload_size | |
id | 830494 |
size | 68,724 |
Flow is command line, that help you to manage much better your projects and tasks. You can create a project and create tasks related to this project.
One more thing, if you love this project, add a star please :).
The releases are here, where you can download the binary and run.
Using git:
git clone https://github.com/DreckSallow/flow.git
cd flow
cargo build --release
Using cargo:
cargo install flow-cli
To see a description of each command, run: flow <command> --help
The app is organized into the following subcommands:
Executed as flow project
, display the current project path.
If you want to add a project:
flow project <PATH>
And if you want to create a folder, you can run:
flow project <PATH> --new
List all projects
flow project list
Set other project as current project using the project <ID>
.
flow project switch <ID>
Remove a project using the project <ID>
flow project rm <ID>
Flow reads the path where it is called, and then set this path (if exists in the saved projects) as the current project.
flow project use
To create a new task: flow task -d <DESCRIPTION>
List all tasks related to current project.
flow task list
To list more info: flow task list --expand
.
To display with colors: flow task list --color
.
To order by: flow task list --order-by <'number'|'desc'>
.
Remove a task using the task <N-ID>
flow task rm <N-ID>
Mark a task as "In Progress".
flow task start <N-ID>
⚠️ You cannot have two tasks with the same "In Progress" status.
Mark a task as "Stop".
flow task stop <N-ID>
Mark tasks as "Complete". This command accepts multiple <N-IDS>
flow task done <N-IDS>
Restore the status tasks as "Not Started". This command accepts multiple <N-IDS>
flow task reset <N-IDS>
The documentation is under development.
Flow is licensed under the MIT license.