0.0.2 • Published 8 years ago

ember-cli-deploy-front-end-builds v0.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

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.

Configuration

config/deploy.js has the following options.

PropertyTypeRequiredExampleNotes
appstringYesmy-blogThe name of your application on the front end builds server.
endpointstringYeshttp://www.ted.comThe hostname where you front end builds server lives.
privateKeystringNo/home/me/feb.keyThe path to the private key used to sign your builds.
requestOptionsobjectNo{}Additional params to pass to the request object.

Example config

// config/deploy.js

ENV['front-end-builds'] = {
  app: 'my-blog',
  endpoint: 'http://www.ted.com',
  privateKey: process.env.FEB_DEPLOY_KEY
};