|
1 | 1 | # TaskNow
|
2 | 2 |
|
3 |
| -A minimalist terminal task manager that helps you focus on one task at a time, while still providing full task management capabilities. |
| 3 | +A super simple terminal to-do app that helps you focus on one task at a time. |
4 | 4 |
|
5 |
| -## Features |
| 5 | +## Why use TaskNow? |
6 | 6 |
|
7 |
| -- Single-task focus by default |
8 |
| -- Simple command-based interface |
9 |
| -- Full task list visibility when needed |
10 |
| -- Completion tracking |
11 |
| -- JSON-based data storage |
12 |
| -- Linux/Ubuntu compatible |
| 7 | +- Stay focused by seeing just your current task |
| 8 | +- Add, complete, and manage tasks easily from the terminal |
| 9 | +- No accounts, no clutter — just your tasks |
13 | 10 |
|
14 |
| -## Installation |
| 11 | +## Quick start |
15 | 12 |
|
16 |
| -### Using pip and setup.py |
17 |
| - |
18 |
| -1. Clone or download this repository. |
19 |
| -2. Navigate to the project directory. |
20 |
| -3. Run: |
| 13 | +Add a task: |
21 | 14 |
|
22 | 15 | ```bash
|
23 |
| -pip install . |
| 16 | +tasknow add "Write report" |
24 | 17 | ```
|
25 | 18 |
|
26 |
| -This will install TaskNow and make the `tasknow` command available globally. |
27 |
| - |
28 |
| -### Requirements |
29 |
| - |
30 |
| -- Python 3.10 or higher |
31 |
| -- `setuptools` (installed automatically with pip) |
32 |
| - |
33 |
| -## Usage |
34 |
| - |
35 |
| -Add a new task: |
36 |
| - |
37 |
| -```bash |
38 |
| -tasknow add "Write documentation" |
39 |
| -``` |
40 |
| - |
41 |
| -View your current task: |
| 19 | +See your current task: |
42 | 20 |
|
43 | 21 | ```bash
|
44 | 22 | tasknow
|
45 | 23 | ```
|
46 | 24 |
|
47 |
| -Mark the current task as done: |
| 25 | +Mark it done: |
48 | 26 |
|
49 | 27 | ```bash
|
50 | 28 | tasknow done
|
@@ -80,20 +58,14 @@ Edit a task:
|
80 | 58 | tasknow edit 2 "New task description"
|
81 | 59 | ```
|
82 | 60 |
|
83 |
| -## Development |
84 |
| - |
85 |
| -Run tests with: |
86 |
| - |
87 |
| -```bash |
88 |
| -pytest |
89 |
| -``` |
| 61 | +--- |
90 | 62 |
|
91 |
| -Generate coverage report: |
| 63 | +For more commands and details, see the full documentation or run: |
92 | 64 |
|
93 | 65 | ```bash
|
94 |
| -pytest --cov=. |
| 66 | +tasknow --help |
95 | 67 | ```
|
96 | 68 |
|
97 |
| -## License |
| 69 | +--- |
98 | 70 |
|
99 | 71 | MIT License © Decoding Chris
|
0 commit comments