v0.0.20
aka GitLab Merge Requests
Client-side web application for viewing Gitlab MRs of interest.
- grouping projects by user preference
- filtering MRs (drafts, approvals, "my" MRs etc)
- MR highlights: pipeline status, merge conflicts, unresolved discussions, overdue MRs, diff summary
- web notifications about fresh MRs
- editor integration: open projects in local editor right from UI
- JIRA integration: open tickets linked to MRs
- starred projects could be included as special separate group
go install github.com/vlanse/glmr/cmd/glmr@latest Prepare configuration file and put it in home dir (btw, configuration file is being watched for changes, so program restart is not needed).
Example:
gitlab:
url: "gitlab instance URL, i.e. https://gitlab.com"
token: "your gitlab access token"
jira: # optional section for JIRA integration
url: "https://jira.domain"
editor: # optional section for editor integration
cmd: "/bin/my-favourite-editor {project_path}" # pay attention to {project_path}, it will be replaced by actual project path
show_starred: true # add if you want to include starred projects as separate group
groups:
- name: some group of projects
projects:
- name: my-project
id: 34675721
path: ~/src/my-project # necessary for editor integration, omit when not needed
- name: other group
projects:
- name: other project
id: 10382875Start the program
~/go/bin/glmrWeb interface address will be shown in stdout:
Web interface available at http://localhost:8082
Open Web UI in your favourite browser:
Frontend code is in separate repository
To generate stub code from proto files:
make buf-deps
make generate