parameters | details |
---|---|
ember help | show all possible params and depth guide as well as shortcodes |
Ember-Cli is a powerful tool which comes with many others to help us deploying faster and convenient. All you need to install Ember-Cli-Deploy and use ember deploy
.
Ember CLI Deploy structures your app’s deployment using a deploy pipeline, which consists of several pipeline hooks. These standard hooks are the foundation for a rich ecosystem of plugins which you can compose to create a deployment process suitable for your application.
As Ember-Cli-Deploy is an addon of Ember so you can easily install that with ember install ember-cli-deploy
. There are two useful other add-ons which make our build and compressing reliable during deployment.
Simply run the following commands:
# Install the Build plugin, which builds your app during deployment
ember install ember-cli-deploy-build
# Gzip our files
ember install ember-cli-deploy-gzip
However, if you are going to maximize your benefits using ember deploy
, it's most likey to have different environments in your Ember application and deploy production,staging or development version of your app with the appropriate configuration.
Platforms that you can deploy by now are:
Kindly refer to example section to see how you can deploy.