- lnr - Working with issues - Working with templates - Create a series of tickets from a TOML file - Create a series of tickets from all TOML files in a directory - Installation - Contributing
A Linear command line client
Add an organization and token. Your token can be generated in Linear Settings
bash
lnr org add
Create a new issue
bash
lnr issue create
View issue (linked to current branch)
bash
lnr issue view
Edit issue (linked to current branch)
bash
lnr issue edit
Input file (uses handlebars-style variables)
```toml
[variables] name = "Alfred"
[parent] title = "This is a parent issue" description = """ We need to create a batcave
Make sure to coordinate with {{name}}
See child tickets """
[[children]] title = "This is a child issue for {{name}} to complete" description = """ Figure out where to put the batcave
[[children]] title = "This is a second child issue that will be linked to the parent issue" description = """ Make sure that we have enough bats
```
Command
bash
lnr template evaluate --path ~/Documents/build_batcave.toml
When passed a directory, Linear Templater will recursively walk through the directory and all sub-directories and create tickets from all the TOML files that are not Cargo.toml
.
Command
```bash
lnr template evaluate --path . ```
```bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh ```
Install lnr
bash
cargo install lnr
Contributions are welcome, be sure to open up an issue first!