gitlab-tracker 0.2.10

A fast terminal TUI dashboard for tracking GitLab Merge Requests across branches
# 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

# Auto-refresh interval in seconds (Defaults to 900 = 15 minutes)
GITLAB_REFRESH_INTERVAL_SECS=900

# 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::"

# Optional: Activity badge thresholds displayed in the Context Inspector panel.
# ACTIVITY_RECENT_DAYS=2   # 🟢 Green badge if updated within this many days (default: 2)
# ACTIVITY_STALE_DAYS=7    # 🔴 Red badge if not updated for this many days (default: 7)
#                          # 🟡 Yellow badge for anything in between