Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gregjopa/ember-reporting-dashboard
Example reporting app built with Ember that uses GitHub's public API
https://github.com/gregjopa/ember-reporting-dashboard
Last synced: 23 days ago
JSON representation
Example reporting app built with Ember that uses GitHub's public API
- Host: GitHub
- URL: https://github.com/gregjopa/ember-reporting-dashboard
- Owner: gregjopa
- Created: 2015-10-13T15:51:50.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-04T18:18:11.000Z (almost 9 years ago)
- Last Synced: 2023-03-11T15:11:32.688Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://gregjopa.me/ember-reporting-dashboard
- Size: 85 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ember-reporting-dashboard
Example reporting app built with Ember that uses GitHub's public API.
## Prerequisites
You will need the following things properly installed on your computer.
* [Git](http://git-scm.com/)
* [Node.js](http://nodejs.org/) (with NPM)
* [Bower](http://bower.io/)
* [Ember CLI](http://www.ember-cli.com/)
* [PhantomJS](http://phantomjs.org/)## Installation
* `git clone ` this repository
* change into the new directory
* `npm install`
* `bower install`## Running / Development
* `ember server`
* Visit your app at [http://localhost:4200](http://localhost:4200).### Code Generators
Make use of the many generators for code, try `ember help generate` for more details
### Running Tests
* `ember test`
* `ember test --server`### Building
* `ember build` (development)
* `ember build --environment production` (production)## Further Reading / Useful Links
* [ember.js](http://emberjs.com/)
* [ember-cli](http://www.ember-cli.com/)
* Development Browser Extensions
* [ember inspector for chrome](https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi)
* [ember inspector for firefox](https://addons.mozilla.org/en-US/firefox/addon/ember-inspector/)## GitHub APIs that power this app
* [GET /repos/:owner/:repo/stats/commit_activity](https://developer.github.com/v3/repos/statistics/#commit-activity)
* [GET /repos/:owner/:repo/commits](https://developer.github.com/v3/repos/commits/#list-commits-on-a-repository)## Project Structure
/
├── app
│ ├── pods - ember pods structure
│ │ ├── application - main starting point and global error handling
│ │ ├── components - reusable components
│ │ ├── error - error template
│ │ ├── index - index route
│ │ ├── loading - loading template
│ │ ├── report-comparison - complex report w/ multi-select element
│ │ └── report-details - basic report w/ single select element
│ │
│ ├── services - reusable modules that can be injected into other objects
│ ├── styles - css styles
│ └── highcharts-configs - highcharts config and theme
│
├── config - environment config (development, test, production)
├── dist - static files for deployment (created by `ember build`)
├── public - static assets (images, robots.txt)
├── server - express.js mock api endpoints
└── tests - unit/integration tests