Skip to content

ember-learn/the-shortest-ember-book

Repository files navigation

the-shortest-ember-book

This repository contains both printable materials and a web app version of the Shortest Ember Book. The goal is to quickly and concisely communicate what Ember is, how it works, and steps to get started.

Printing

Anyone is welcome to print the book(s)! Meetup organizers, speakers, and conference table hosts are especially encouraged to print and distribute copies. You can download printable assets. Follow these folding instructions to assemble.

Ember mini book

Modifications

If you want to make modifications to the book, please open an issue/pull request, which needs to be merged before printing and distributing the modified version.

The Tomster has some restrictions on use outside of formal Ember.js projects. All other graphic assets were created by Braden Lawrence, and are intended for use only in the mini books.

Prerequisites to run the app

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

Installation

  • git clone <repository-url> this repository
  • cd the-shortest-ember-book
  • yarn 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

Linting

  • yarn lint
  • yarn lint:fix

Building

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

Deploying

Specify what it takes to deploy your app.

Further Reading / Useful Links