Skip to content

ember-learn/tutorials

Repository files navigation

Ember Tutorials Source

This repository is part of a Work-In-Progress project to separate and expand on the Ember Tutorials in the Ember Guides.

As this project is pre-1.0, no content should be taken as the final word. Additional review is still pending.

Prerequisites

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

Local Development

To see what a local copy of the Tutorial markdown looks like:

  • Clone the Ember Tutorial App App repository
  • run npm install in the tutorial app directory
  • link the tutorial-source repository by running npm link inside this repository, then npm link @ember-learn/tutorial-source in the tutorial-app directory
  • run ember serve in the tutorial app directory
  • Visit your app at http://localhost:4200.
  • Visit your tests at http://localhost:4200/tests.

Adding more things to the table of contents

See pages.yaml in the cli-guides-source. Whatever has a url of index will be what is shown for the top level path, like /tutorial/. There must be an index.md under each topic.

Deploying

See instructions on the cli-guides-app README.