Building the Taskify Ember app

Let's get back to Ember development to build our SPA. Follow these steps. We will occasionally refer to previous sections of this chapter, and detail the specifics here.

Setting up Taskify as an Ember CLI project

Let's generate the project and set up all the artifacts. Follow these steps:

  1. Create a new Ember project using Ember CLI from the command line:
    ember new taskify
    
  2. Install broccoli-merge-trees and broccoli-static-compiler for a richer Broccoli configuration. Issue the following commands from the command line:
    npm install --save-dev broccoli-merge-trees
    npm install --save-dev broccoli-static-compiler
    
  3. Install Bootstrap with Bower from the command line:
    bower install bootstrap
    
  4. Configure Broccoli to include bootstrap.js, ...

Get Spring MVC: Designing Real-World Web Applications now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.