-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/kennedyoliveira/github-ba…
- Loading branch information
Showing
1 changed file
with
63 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,63 @@ | ||
# github-basic-badges | ||
Basic badges for github | ||
# GitHub Basic Badges | ||
|
||
[![GitHub Release](https://github-basic-badges.herokuapp.com/release/kennedyoliveira/github-basic-badges.svg)]() | ||
[![GitHub Download Count](https://github-basic-badges.herokuapp.com/downloads/kennedyoliveira/github-basic-badges/total.svg)]() | ||
[![GitHub Issues Open](https://github-basic-badges.herokuapp.com/issues/kennedyoliveira/github-basic-badges.svg)]() | ||
|
||
Basic badges for using with GitHub, and a service that you can deploy and create your own service to serve the GitHub badges. | ||
|
||
## Motivation | ||
|
||
I know there are alots of services that you can generate badges for GitHub, i just developed one more to play around with Ruby and Heroku. | ||
|
||
### Badges | ||
|
||
All the URL Patterns showed in the table bellow must be used as `<app-url>\<url-pattern>`. | ||
|
||
| URL Pattern | Description | Preview | | ||
| ----------- | ----------- | ------- | | ||
| `downloads/<user>/<repo>/total.svg` | Sum of downloads of all artifacts in the latest release. | [![GitHub Download Count](https://github-basic-badges.herokuapp.com/downloads/kennedyoliveira/github-basic-badges/total.svg)]() | | ||
| `downloads/<user>/<repo>/<tag>/total.svg` | Sum of downloads of all artifacts in the release with the `<tag>` | [![GitHub Download Count By Tag](https://github-basic-badges.herokuapp.com/downloads/kennedyoliveira/github-basic-badges/v1.0.0/total.svg)]() | | ||
| `downloads/<user>/<repo>/<file>.svg` | Total downloads of the artifact named `<file>` in the latest release. | [![GitHub Download Count By Artifact](https://github-basic-badges.herokuapp.com/downloads/kennedyoliveira/github-basic-badges/dummy.txt.svg)]() | | ||
| `downloads/<user>/<repo>/<tag>/<file>.svg` | Total downloads of an artifact named `<file>` in the release with a tag name `<tag>`. | [![GitHub Download Count By Artifact and Release](https://github-basic-badges.herokuapp.com/downloads/kennedyoliveira/github-basic-badges/v1.0.0/dummy.txt.svg)]() | | ||
| `release/<user>/<repo>.svg` | Latest release tag name. | [![GitHub Release](https://github-basic-badges.herokuapp.com/release/kennedyoliveira/github-basic-badges.svg)]() | | ||
| `issues/<user>/<repo>.svg` | Total issues open. | [![GitHub Issues Open](https://github-basic-badges.herokuapp.com/issues/kennedyoliveira/github-basic-badges.svg)]() | | ||
| `commits/<user>/<repo>.svg` | Total commits. | [![GitHub Commits](https://github-basic-badges.herokuapp.com/commits/kennedyoliveira/github-basic-badges.svg)]() | | ||
|
||
### Custom colors and text | ||
|
||
You can customize the colors and the text of the badges, just use `color` and `text` parameters in the url, like customizing the last release example, check below: | ||
|
||
[![GitHub Release Ex 1](https://github-basic-badges.herokuapp.com/release/kennedyoliveira/github-basic-badges.svg?color=blue&text=last--release)]() | ||
[![GitHub Release Ex 2](https://github-basic-badges.herokuapp.com/release/kennedyoliveira/github-basic-badges.svg?color=orange)]() | ||
[![GitHub Release Ex 3](https://github-basic-badges.herokuapp.com/release/kennedyoliveira/github-basic-badges.svg?text=final--release)]() | ||
[![GitHub Release Ex 4](https://github-basic-badges.herokuapp.com/release/kennedyoliveira/github-basic-badges.svg?color=green)]() | ||
[![GitHub Release Ex 5](https://github-basic-badges.herokuapp.com/release/kennedyoliveira/github-basic-badges.svg?color=yellow)]() | ||
[![GitHub Release Ex 6](https://github-basic-badges.herokuapp.com/release/kennedyoliveira/github-basic-badges.svg?9900ff)]() | ||
|
||
For colors you can use any hex colors you want, and some basic already defined, check the file [badge.rb](https://github.com/kennedyoliveira/github-basic-badges/blob/master/badges/badge.rb) for some basic colors. | ||
|
||
### Deploying on Heroku | ||
|
||
Install heroku toolbet and log to it after that, it's pretty straigth forward deploying on heroku, just do the following: | ||
|
||
```` | ||
# Cloning the repository | ||
git clone https://github.com/kennedyoliveira/github-basic-badges.git | ||
cd github-basic-badges | ||
# Create a heroku app | ||
heroku create | ||
# Push the code to heroku | ||
git push heroku master | ||
# Open the app | ||
heroku open | ||
```` | ||
|
||
### Mine Heroku App | ||
|
||
My instance is running in the following url `https://github-basic-badges.herokuapp.com` you can use it to generate badges for your repos! | ||
|
||
If you have any question or suggestion, open an issue! |