An open API service indexing awesome lists of open source software.

https://github.com/robdel12/github-display

Ember Addon that provides components to display github stuff
https://github.com/robdel12/github-display

Last synced: over 1 year ago
JSON representation

Ember Addon that provides components to display github stuff

Awesome Lists containing this project

README

          

# Github-display

This addon provides some components to display github information

## Including it in your project

To package.json add:
```
"devDependencies": {
...
"github-display":"0.0.4"
...
}
```

## Components

### repo-display

Shows information about a github repository.


TODO: needs to be fleshed out and made configuratbel


To use the component do:


```
{{repo-display id="langens-jonathan/github-display"}}
```

### repo-readme

Shows the readme for the repository with the given id


TODO: fleshing out, making it more flexible


To use the component do:


```
{{repo-readme repoId="langens-jonathan/github-display"}}
```

## Installation

* `git clone` this repository
* `npm install`
* `bower install`

## Running

* `ember server`
* Visit your app at http://localhost:4200.

## Running Tests

* `npm test` (Runs `ember try:testall` to test your addon against multiple Ember versions)
* `ember test`
* `ember test --server`

## Building

* `ember build`

For more information on using ember-cli, visit [http://www.ember-cli.com/](http://www.ember-cli.com/).