Version
- Getting started
- Overview
- Installation
- Commands
- Lightning approach workflow
- Configuration
- How to use
- Fingerprinting options and staging environments
- S3 asset uploads
- Overview
- Example Sinatra app
- Example Node app
- Custom adapters
- Overview
- Existing custom adapters
- Index adapters
- Asset adapters
- Tagging adapters

Commands
This Ember-CLI Addon adds multiple deployment related tasks to your Ember-CLI App.
ember deploy:list
Lists all currently uploadedrevisions
of bootstrap index.html files in your key-value store.ember deploy:activate
Activates an uploadedrevision
. This will set the<your-project-name>:current
revision to the passed revision.<your-project-name>:current
is the revision you will serve your users as default.ember deploy
This commands builds your ember application, uploads it to your file hoster and uploads it to your key value store in one step.
You can pass --environment <some-environment>
to every command. If you don’t pass an environment explicitly ember-cli-deploy
will use the development
-environment.
You can pass --deploy-config-file <path/to/deploy-config.js>
to every command. If you don’t pass a deploy-config-file explicitly config/deploy.js
will be read.