@ember-learn/tutorial-source
v0.0.2
Published
Markdown files for Ember Tutorials
Downloads
31
Maintainers
Keywords
Readme
Ember Tutorials Soruce
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.
- Git
- Node.js (with npm)
- Ember CLI
- Google Chrome
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 runningnpm link
inside this repository, thennpm 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.