Version
- Getting started
- Overview
- Installation
- Quickstart
- Upgrading
- Setting up your pipeline
- Determining needs
- Using Plugins
- Deploying your app
- Plugin Packs
- Authoring Plugins
- Creating a plugin
- Pipeline hooks
- The deployment context
- Creating a plugin pack
- Creating in-repo plugins
- Cookbook
- Default options
- Using .env for secrets
- Including a plugin twice
- Development workflow
- The lightning strategy
- S3 walkthrough
- Deploy non-Ember apps
- Reference
- Usage
- Configuration
- Other API/Classes
Improve this page
Other API/Classes
Changing log colors
The color of log messages (i.e. when running with --verbose
) can be customized either by passing the following command line options:
ember deploy --log-info-color=yellow --log-error-color=green
Or by setting the configuration in .ember-cli
// .ember-cli
{
"ember-cli-deploy": {
log-info-color: 'blue',
log-error-color: 'red'
}
}
Default values are blue
for log messages and red
for errors.