Awesome
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.
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.
- yarn
- Git
- Node.js (with npm)
- Ember CLI
- Google Chrome
Installation
git clone <repository-url>
this repositorycd the-shortest-ember-book
yarn install
Running / Development
ember serve
- Visit your app at http://localhost:4200.
- Visit your tests at http://localhost:4200/tests.
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.