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.
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.
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.
You will need the following things properly installed on your computer.
- yarn
- Git
- Node.js (with npm)
- Ember CLI
- Google Chrome
git clone <repository-url>
this repositorycd the-shortest-ember-book
yarn install
ember serve
- Visit your app at http://localhost:4200.
- Visit your tests at http://localhost:4200/tests.
Make use of the many generators for code, try ember help generate
for more details
ember test
ember test --server
yarn lint
yarn lint:fix
ember build
(development)ember build --environment production
(production)
Specify what it takes to deploy your app.