Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 74 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ description = "Rust/Ratatui GitLab personal kanban TUI"
[dependencies]
ratatui = "0.30"
crossterm = { version = "0.29", features = ["bracketed-paste"] }
base64 = "0.22.1"
getrandom = "0.2.17"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
sha2 = "0.11.0"
thiserror = "2.0.18"
ureq = { version = "3.3.0", features = ["json"] }
url = "2.5.8"
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Lane

Lane is a Rust/Ratatui terminal UI for a personal GitLab-backed kanban board.
GitLab is the source of truth for issues, labels, notes, and board state; Lane
only stores local configuration and secrets.

## Configuration

Expand All @@ -11,6 +13,20 @@ values persist as `settings.json` in the OS config directory
variables (`LANE_GITLAB_URL`, `LANE_GITLAB_TOKEN`, `LANE_PERSONAL_PROJECT_ID`,
`LANE_LLM_*`) still work and take precedence over saved settings.

OAuth is supported through environment/config secrets:

```sh
LANE_GITLAB_URL=https://gitlab.example.com
LANE_PERSONAL_PROJECT_ID=42
LANE_OAUTH_CLIENT_ID=...
LANE_OAUTH_REDIRECT_URI=http://127.0.0.1:8910/oauth/callback
LANE_OAUTH_SCOPE=api
```

`LANE_OAUTH_CLIENT_SECRET` is optional for public/PKCE clients. OAuth access
and refresh tokens are stored under the Lane config directory with owner-only
file permissions on Unix.

Press `?` inside the app for the full keyboard reference (`/` search,
`n` new issue, `g` generate stories, `s` sync, `hjkl`/arrows to navigate).

Expand All @@ -35,3 +51,9 @@ npm run build
npm run check:vendor
lane
```

Generate current TUI screenshots (PNG/SVG/TXT) for visual review:

```sh
cargo run --example screenshot_capture
```
Loading