aboutsummaryrefslogtreecommitdiffstats
path: root/Readme.md
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-08-06 03:22:36 +0200
committerMichael Muré <batolettre@gmail.com>2018-08-06 03:26:42 +0200
commit26e7ce44db91f3b08fa5d1b32690348d40c1fb00 (patch)
treed42e357dfd83453d284f861dccdadfde54eef54e /Readme.md
parentb2f20c9a61715b0a60f9e55688dbed221d775c7e (diff)
downloadgit-bug-26e7ce44db91f3b08fa5d1b32690348d40c1fb00.tar.gz
upgrade the readme
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md70
1 files changed, 34 insertions, 36 deletions
diff --git a/Readme.md b/Readme.md
index 6142f308..3de5aa04 100644
--- a/Readme.md
+++ b/Readme.md
@@ -1,5 +1,9 @@
# git-bug
+[![Build Status](https://travis-ci.org/MichaelMure/git-bug.svg?branch=master)](https://travis-ci.org/MichaelMure/git-bug)
+[![License: GPL v3](https://img.shields.io/badge/License-GPLv3+-blue.svg)](http://www.gnu.org/licenses/gpl-3.0)
+[![GoDoc](https://godoc.org/github.com/MichaelMure/git-bug?status.svg)](https://godoc.org/github.com/MichaelMure/git-bug)
+
> Bugtracker embedded in Git
Would it be nice to not have to rely on a web service somewhere to deal with bugs ?
@@ -24,15 +28,15 @@ export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
That's all ! In the future, pre-compiled binary will be provided for convenience.
-## Usage
+## CLI usage
-It's really a WIP but you can already create a bug:
+Create a new bug:
```
-git bug new "This doesn't even build"
+git bug new
```
-Your favorite editor will open to write a description.
+Your favorite editor will open to write a title and a message.
You can push your new entry to a remote:
```
@@ -44,56 +48,50 @@ And pull for updates:
git bug pull [<remote>]
```
-You can now use commands like `show`, `comment`, `open` or `close` to display and modify bugs.
-
-## All commands
+List existing bugs:
+```
+git bug ls
+```
-```bash
-# Mark the bug as closed
-git bug close <id>
+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](doc/md/git-bug.md).
-# Display available commands
-git bug commands [<option>...]
+## Interactive terminal UI
-# Add a new comment to a bug
-git bug comment [<options>...] <id>
+An interactive (WIP) terminal UI is available using the command `git bug termui` to browse and edit bugs.
-# Manipulate bug's label
-git bug label <id> [<option>...] [<label>...]
+![terminal UI](doc/termui.png)
-# Display a summary of all bugs
-git bug ls
+// TODO: replace with less test data ;-)
-# Create a new bug
-git bug new [<option>...] <title>
+## Web UI
-# Mark the bug as open
-git bug open <id>
+You can launch a rich Web UI (terribly WIP) with `git bug webui`.
-# Pull bugs update from a git remote
-git bug pull [<remote>]
+![Web UI](doc/webui.png)
-# Push bugs update to a git remote
-git bug push [<remote>]
+This web UI is entirely packed inside the same go binary and serve static content through a localhost http server.
-# Display the details of a bug
-git bug show <id>
+The web UI interact with the backend through a GraphQL API. The schema is available [here](graphql/schema.graphql).
-# Launch the web UI
-git bug webui
-```
+Note: the compiled web UI is not commited in git for now so you will have to install npm packages and build it before compiling the go binary.
## Internals
Interested by how it works ? Have a look at the [data model](doc/model.md).
+## Misc
+
+- [Bash completion](misc/bash_completion)
+- [Zsh completion](misc/zsh_completion)
+- [ManPages](doc/man)
+
## Planned features
-- interactive CLI UI
-- rich web UI
-- media embedding
-- import/export of github issue
-- inflatable raptor
+- [ ] interactive CLI UI
+- [ ] rich web UI
+- [ ] media embedding
+- [ ] import/export of github issue
+- [ ] inflatable raptor
## Contribute