All Projects → MichaelMure → Git Bug

MichaelMure / Git Bug

Licence: gpl-3.0
Distributed, offline-first bug tracker embedded in git, with bridges

Programming Languages

go
31211 projects - #10 most used programming language
typescript
32286 projects
shell
77523 projects

Projects that are alternatives of or similar to Git Bug

Dnpipes
Distributed Named Pipes
Stars: ✭ 452 (-91.68%)
Mutual labels:  distributed-systems
Scalecube Services
ScaleCube Services is a high throughput, low latency reactive microservices library built to scale. it features: API-Gateways, service-discovery, service-load-balancing, the architecture supports plug-and-play service communication modules and features. built to provide performance and low-latency real-time stream-processing. its open and designed to accommodate changes. (no sidecar in a form of broker or any kind)
Stars: ✭ 482 (-91.13%)
Mutual labels:  distributed-systems
Cadence
Cadence is a distributed, scalable, durable, and highly available orchestration engine to execute asynchronous long-running business logic in a scalable and resilient way.
Stars: ✭ 5,522 (+1.68%)
Mutual labels:  distributed-systems
Hazelcast
Open-source distributed computation and storage platform
Stars: ✭ 4,662 (-14.16%)
Mutual labels:  distributed-systems
Nsq
A realtime distributed messaging platform (forked from https://github.com/nsqio/nsq)
Stars: ✭ 476 (-91.24%)
Mutual labels:  distributed-systems
Verdi
A framework for formally verifying distributed systems implementations in Coq
Stars: ✭ 496 (-90.87%)
Mutual labels:  distributed-systems
Xgboost
Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and more. Runs on single machine, Hadoop, Spark, Dask, Flink and DataFlow
Stars: ✭ 22,017 (+305.39%)
Mutual labels:  distributed-systems
Copycat
A novel implementation of the Raft consensus algorithm
Stars: ✭ 551 (-89.85%)
Mutual labels:  distributed-systems
Ra
A Raft implementation for Erlang and Elixir that strives to be efficient and make it easier to use multiple Raft clusters in a single system.
Stars: ✭ 478 (-91.2%)
Mutual labels:  distributed-systems
Awesome Distributed Systems
Awesome list of distributed systems resources
Stars: ✭ 512 (-90.57%)
Mutual labels:  distributed-systems
Dslabs
Distributed Systems Labs and Framework
Stars: ✭ 461 (-91.51%)
Mutual labels:  distributed-systems
Pysyncobj
A library for replicating your python class between multiple servers, based on raft protocol
Stars: ✭ 468 (-91.38%)
Mutual labels:  distributed-systems
Maelstrom
A workbench for writing toy implementations of distributed systems.
Stars: ✭ 493 (-90.92%)
Mutual labels:  distributed-systems
Elasticell
Elastic Key-Value Storage With Strong Consistency and Reliability
Stars: ✭ 453 (-91.66%)
Mutual labels:  distributed-systems
Corfudb
A cluster consistency platform
Stars: ✭ 539 (-90.08%)
Mutual labels:  distributed-systems
Ergo
The management of multiple apps running over different ports made easy
Stars: ✭ 452 (-91.68%)
Mutual labels:  distributed-systems
Package
Metaparticle/Package: Language Fluent Containerization and Deployment in Java, .NET and Javascript (and more coming soon)
Stars: ✭ 493 (-90.92%)
Mutual labels:  distributed-systems
Pachyderm
Reproducible Data Science at Scale!
Stars: ✭ 5,305 (-2.32%)
Mutual labels:  distributed-systems
Reactivemanifesto
The Reactive Manifesto
Stars: ✭ 542 (-90.02%)
Mutual labels:  distributed-systems
Iotex Core
Official implementation of IoTeX blockchain protocol in Go.
Stars: ✭ 505 (-90.7%)
Mutual labels:  distributed-systems

git-bug

Backers on Open Collective Sponsors on Open Collective License: GPL v3 GoDoc Go Report Card Gitter chat

git-bug is a bug tracker that:

  • is fully embedded in git: you only need your git repository to have a bug tracker
  • is distributed: use your normal git remote to collaborate, push and pull your bugs!
  • works offline: in a plane or under the sea? Keep reading and writing bugs!
  • prevents vendor lock-in: your usual service is down or went bad? You already have a full backup.
  • is fast: listing bugs or opening them is a matter of milliseconds
  • doesn't pollute your project: no files are added in your project
  • integrates with your tooling: use the UI you like (CLI, terminal, web) or integrate with your existing tools through the CLI or the GraphQL API
  • bridges to other bug trackers: use bridges to import and export to other trackers.

🚧 This is now more than a proof of concept, but still not fully stable. Expect dragons and unfinished business. 🚧

Help needed!

This project has grown bigger than I can handle by myself, especially with a day job. I'm looking for people to help on or maintain part of it:

  • each bridges (go)
  • the terminal UI (go)
  • the web UI (Typescript/React/GraphQL)

Individually, those pieces are not especially complex but doing everything make it hard for me to focus on the core where things get more complicated. If this is useful for you or you just want to join the fun, maybe consider it?

Installation

Pre-compiled binaries
  1. Go to the release page and download the appropriate binary for your system.
  2. Copy the binary anywhere in your $PATH
  3. Rename the binary to git-bug (or git-bug.exe on windows)

That's all !

Windows packages
  • Scoop
    scoop install git-bug
    
Linux packages
macOS packages
FreeBSD package/port

Install via the package manager

pkg install git-bug

Or from the ports collection

cd /usr/ports/devel/git-bug && make install clean
Compile from git (unstable)
git clone [email protected]:MichaelMure/git-bug.git
make install

If it's not done already, add the golang binary directory in your PATH:

export PATH=$PATH:$(go env GOROOT)/bin:$(go env GOPATH)/bin

Workflows

There are multiple ways to use git-bug:

Native workflow

Native workflow

This is the pure git-bug experience. In a similar fashion as with code, use git bug push and git bug pull to push and pull your bugs between git remotes and collaborate with your teammate.

Bridge workflow

Bridge workflow

As git-bug has bridges with other bug-trackers, you can use it as your personal local remote interface. Sync with git bug bridge pull and git bug bridge push, work from your terminal, integrate into your editor, it's up to you. And it works offline !

Web UI workflow (WIP)

Web UI workflow

Often, projects needs to have their bug-tracker public and accept editions from anyone facing a problem. To support this workflow, git-bug aims to have the web UI accept external OAuth authentication and act as a public portal. However the web UI is not up to speed for that yet. Contribution are very much welcome!

CLI usage

Create a new identity:

git bug user create

Create a new bug:

git bug add

Your favorite editor will open to write a title and a message.

You can push your new entry to a remote:

git bug push [<remote>]

And pull for updates:

git bug pull [<remote>]

List existing bugs:

git bug ls

Filter and sort bugs using a query:

git bug ls "status:open sort:edit"

Search for bugs by text content:

git bug ls "foo bar" baz

You can now use commands like show, comment, open or close to display and modify bugs. For more details about each command, you can run git bug <command> --help or read the command's documentation.

Interactive terminal UI

An interactive terminal UI is available using the command git bug termui to browse and edit bugs.

Termui recording

Web UI (status: WIP)

You can launch a rich Web UI with git bug webui.

Web UI screenshot 1

Web UI screenshot 2

This web UI is entirely packed inside the same go binary and serve static content through a localhost http server.

The web UI interact with the backend through a GraphQL API. The schema is available here.

Bridges

Importer implementations

Github Gitlab Jira Launchpad
incremental
(can import more than once)
✔️ ✔️ ✔️
with resume
(download only new data)
✔️ ✔️ ✔️
identities ✔️ ✔️ ✔️ ✔️
identities update
bug ✔️ ✔️ ✔️ ✔️
comments ✔️ ✔️ ✔️ ✔️
comment editions ✔️ ✔️
labels ✔️ ✔️ ✔️
status ✔️ ✔️ ✔️
title edition ✔️ ✔️ ✔️
media/files
automated test suite ✔️ ✔️

Exporter implementations

Github Gitlab Jira Launchpad
bug ✔️ ✔️ ✔️
comments ✔️ ✔️ ✔️
comment editions ✔️ ✔️ ✔️
labels ✔️ ✔️ ✔️
status ✔️ ✔️ ✔️
title edition ✔️ ✔️ ✔️
automated test suite ✔️ ✔️

Bridge usage

Interactively configure a new github bridge:

git bug bridge configure

Or manually:

git bug bridge configure \
    --name=<bridge> \
    --target=github \
    --url=https://github.com/MichaelMure/git-bug \
    --login=<login>
    --token=<token>

Import bugs:

git bug bridge pull [<name>]

Export modifications:

git bug bridge push [<name>]

Deleting a bridge:

git bug bridge rm [<name>]

Internals

Interested by how it works ? Have a look at the data model and the internal bird-view.

Misc

Planned features

  • media embedding
  • more bridges
  • extendable data model to support arbitrary bug tracker
  • inflatable raptor

Contribute

PRs accepted. Drop by the Gitter lobby for a chat or browse the issues to see what is worked on or discussed.

git clone [email protected]:MichaelMure/git-bug.git

You can now run make to build the project, or make install to install the binary in $GOPATH/bin/.

To work on the web UI, have a look at the dedicated Readme.

Contributors ❤️

This project exists thanks to all the people who contribute.

Backers

Thank you to all our backers! 🙏 [Become a backer]

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

License

Unless otherwise stated, this project is released under the GPLv3 or later license © Michael Muré.

The git-bug logo by Viktor Teplov is released under the Creative Commons Attribution 4.0 International (CC BY 4.0) license © Viktor Teplov.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].