Skip to content

Latest commit

 

History

History
57 lines (35 loc) · 1.68 KB

README.md

File metadata and controls

57 lines (35 loc) · 1.68 KB

TODO MVC in ember.js ver 2.1.0 with Bootstrap

Ember.js earlier had an easy to understand todo mvc guide. I have tried to reproduce the same with the ember.js version 2.1.0. Many changes have happened in ember and the todo mvc guide also has various versions. This is my attempt to be upadted.

In this version, ember components have taken the cenrte stage (instead of Views and Controller).

A more detailed note is added in the web link: http://govidat.github.io/blog/tutorial/2015/11/30/emberjs-2.1.0-todomvc.html

Prerequisites

You will need the following things properly installed on your computer.

Installation

  • git clone <repository-url> this repository
  • change into the new directory
  • npm install
  • bower install

Running / Development

Code Generators

Make use of the many generators for code, try ember help generate for more details

Running Tests

  • ember test
  • ember test --server

Building

  • ember build (development)
  • ember build --environment production (production)

Deploying

Specify what it takes to deploy your app.

Further Reading / Useful Links