Adds Velocity.js to application's vendor directory and imports Velocity for use in application. This addon shims Promise with Ember.RSVP.Promise if the browser doesn't have native Promise support.
npm install --save ember-cli-velocity
You can activate UI pack in your project's environment.js
under app/config
.
module.exports = function(environment) {
var ENV = {
[...]
velocityOptions: {
enabled: true, // enabled the addon (default: true)
ui: false // add Velocity UI Pack (default: false)
}
[...]
}
}
git clone
this repositorynpm install
bower install
ember server
- Visit your app at http://localhost:4200.
ember test
ember test --server
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.