gitlab-tracker 0.1.0

A fast terminal TUI dashboard for tracking GitLab Merge Requests across branches
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Required: Your target GitLab Project ID
GITLAB_PROJECT_ID=12345678

# Optional: Custom self-hosted GitLab instance (Defaults to https://gitlab.com if omitted)
GITLAB_URL=https://gitlab.my-company.com

# Optional: Override token via environment variable (Not recommended for disk storage; use OS Keyring instead)
# GITLAB_TOKEN=glpat-xxxxxxxxxxxxxxxxxxxx

# Optional: Override default initial branches for new sessions (comma-separated, defaults to "main")
# DEFAULT_BRANCHES="main,develop,staging"

# Optional: Filter which label prefixes appear in the main table column (comma-separated)
# Note: The Context Inspector side panel will ALWAYS display all labels regardless of this setting.
# TABLE_LABEL_PREFIXES="deploy::,review::"