You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trenton Young edited this page May 3, 2024
·
6 revisions
Quick Start
Get started by installing todoon with pip! Once you have todoon installed, you can run it "right out of the box" but it's strongly recommended that you initialize a .todo-ignore file as there can be a lot of files in your project directory that you might not be interested in maintaining (at least ignore '.git' please!)
Basic Use
The command todoignore-util with the -p (arguments are paths) and -c (create a new file if one doesn't exist) used below with a function that collects all the hidden files and folders in the working directory should be a good start for your .todo-ignore file.
TODO untested
pip install --upgrade todo-or-not
todoignore-util -pc $( ls -a | grep "^\.[^.]")
todoon
No Filter
This mode is not usually recommended! Use this if you are sure you don't have a large amount of files in the directory, because it will scan everything!
pip install --upgrade todo-or-not
todoon --force
Generate Issues
Generate all the issues found in the project that haven't already been generated (
assumes issues environment is set up correctly and a .todo-ignore is in place)