Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aklkv/ember-cli-deploy-raygun
Ember-cli-deploy plugin to upload source maps and submit deployment information to Raygun
https://github.com/aklkv/ember-cli-deploy-raygun
Last synced: about 2 months ago
JSON representation
Ember-cli-deploy plugin to upload source maps and submit deployment information to Raygun
- Host: GitHub
- URL: https://github.com/aklkv/ember-cli-deploy-raygun
- Owner: aklkv
- License: mit
- Created: 2016-08-11T08:29:50.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-12T09:34:10.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T00:42:18.403Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 2.24 MB
- Stars: 1
- Watchers: 4
- Forks: 3
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[![Code Climate](https://codeclimate.com/github/aklkv/ember-cli-deploy-raygun/badges/gpa.svg)](https://codeclimate.com/github/aklkv/ember-cli-deploy-raygun)
[![Issue Count](https://codeclimate.com/github/aklkv/ember-cli-deploy-raygun/badges/issue_count.svg)](https://codeclimate.com/github/aklkv/ember-cli-deploy-raygun)
# Ember-cli-deploy-raygunEmber-cli-deploy plugin to upload source maps and submit deployment information to [Raygun](http://raygun.com).
## Installation
------------------------------------------------------------------------------`ember install ember-cli-deploy-raygun`
## Configuration
```javascript
// config/deploy.jsvar ENV = {
…
raygun: {
key: '', // Raygun apiKey
token: '', // Raygun External Access Token
prefix: '', // optional url prefix for (used for sourcemaps only)
appId: '', // optional application id (used for sourcemaps only)
},
...
};```
### Where to find stuff
- **API Key** can be found on application settings page.
- [**Token**](https://raygun.com/docs/workflow/external-access-token)
- **Prefix** is url pointing to where your files are stored (e.g `https://s3-eu-west-1.amazonaws.com//`).
- **Application ID** is the last portion of Ragun dashboard url (e.g `https://app.raygun.com/dashboard/`).## Sourcemaps
In order for sourcemaps to work enable sourcemaps generation in `ember-cli-build.js` as follows:
```javascript
// ./ember-cli-build.jssourcemaps: {
enabled: true
}```
### Linting- `npm run lint:hbs`
- `npm run lint:js`
- `npm run lint:js -- --fix`### Running tests
- `ember test` – Runs the test suite on the current Ember version
- `ember test --server` – Runs the test suite in "watch mode"
- `ember try:each` – Runs the test suite against multiple Ember versions### Running the dummy application
- `ember serve`
- Visit the dummy application at [http://localhost:4200](http://localhost:4200).For more information on using ember-cli, visit [https://ember-cli.com/](https://ember-cli.com/).
### License
------------------------------------------------------------------------------This project is licensed under the [MIT License](LICENSE.md).