https://github.com/tedconf/ember-cli-deploy-front-end-builds
An ember-cli-deploy plugin for front_end_builds
https://github.com/tedconf/ember-cli-deploy-front-end-builds
Last synced: about 1 year ago
JSON representation
An ember-cli-deploy plugin for front_end_builds
- Host: GitHub
- URL: https://github.com/tedconf/ember-cli-deploy-front-end-builds
- Owner: tedconf
- License: mit
- Created: 2015-11-04T23:37:46.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-08-09T03:01:02.000Z (almost 4 years ago)
- Last Synced: 2025-03-27T00:54:54.214Z (about 1 year ago)
- Language: JavaScript
- Size: 19.5 KB
- Stars: 1
- Watchers: 26
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Deprecation Notice
TED has shifted to React and will no longer maintain this application/library. If you wish to continue using this application/library, please create a pull request and repo ownership can be transferred. This repository will be archived at the end of 2022.
# Front end builds (Ember.JS)
If you are deploying an Ember.JS application to a front end builds
server then you should probably check out the [Front end builds
pack](https://github.com/tedconf/ember-cli-deploy-front-end-builds-pack).
## Configuration
`config/deploy.js` has the following options.
Property | Type | Required | Example | Notes
--- | --- | --- | --- | ---
`app` | `string` | Yes | `my-blog` | The name of your application on the front end builds server.
`endpoint` | `string` | Yes | `http://www.ted.com` | The hostname where you front end builds server lives.
`privateKey` | `string` | No | `/home/me/feb.key` | The path to the private key used to sign your builds.
`requestOptions` | `object` | No | `{}` | Additional params to pass to the [request](https://github.com/request/request) object.
### Example config
```javascript
// config/deploy.js
ENV['front-end-builds'] = {
app: 'my-blog',
endpoint: 'http://www.ted.com',
privateKey: process.env.FEB_DEPLOY_KEY
};
```