Skip to content

ember-learn/ember-api-docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

707b57d · Feb 27, 2025
Jan 28, 2025
Feb 27, 2025
Mar 28, 2019
Jul 23, 2024
Jun 22, 2021
Sep 21, 2023
Jun 25, 2024
Jan 16, 2025
Apr 3, 2020
Dec 6, 2015
Sep 21, 2023
May 19, 2023
Sep 21, 2023
Jun 7, 2024
Jun 22, 2021
Jun 22, 2021
May 19, 2023
Dec 6, 2015
Nov 25, 2022
May 20, 2021
Dec 5, 2016
Oct 20, 2017
Jul 5, 2024
May 13, 2021
Jul 23, 2024
Nov 19, 2022
Feb 27, 2025
Feb 27, 2025
Sep 21, 2023
Jun 22, 2021
Jun 22, 2021

Repository files navigation

This project uses GitHub Actions for continuous integration. This project uses Percy.io for visual regression testing.

This project contains only the API docs portion of Emberjs.com. If you're looking for the rest of the site, see the website and guides repositories.

There are many pieces that together create the Ember API docs site:

Contributing

New contributors are welcome! This project is maintained by an all-volunteer team, and we are thankful for your help.

The best way to get started is to find an issue labeled "good first issue" or "help wanted." If you have questions or want a buddy to pair with, drop by the #dev-ember-learning channel on the Ember Community Discord. Like most open-source projects, contributors are encouraged to open an issue to propose changes and iterate on ideas before investing time in coding. Some tips for working with git/GitHub can be found in Making your first pull request in the Guides repository.

Please also see CONTRIBUTING.md.

Running in your local environment

ember-api-docs expects a folder in its root that links to the ember-api-docs-data folder, so you can either use the npm run clone script to clone the ember-api-docs-data repo into ember-api-docs, OR you can create a symbolic link to ember-api-docs-data from ember-api-docs. You might want to sym-link ember-api-docs-data if you are generating new versions of the docs files with ember-jsonapi-docs, otherwise you can probably use the clone script.

Quickstart to run locally

Follow these instructions to run the app using publically available online data. You do not need to run ember-jsonapi-docs locally yourself.

git clone https://github.com/ember-learn/ember-api-docs.git
cd ember-api-docs
pnpm install
pnpm run clone
pnpm run start

View at http://localhost:4200

Run locally with a sym-link

Clone all of the following repositories into the same directory so they are "siblings" on the file system:

git clone https://github.com/ember-learn/ember-api-docs-data
git clone https://github.com/ember-learn/ember-api-docs
cd ember-api-docs
ln -s ../ember-api-docs-data
pnpm install
pnpm start

Visit the app in your browser at http://localhost:4200

a11y testing

To run a11y tests, run test_a11y=yes ember serve

Linting

  • pnpm run lint:hbs
  • pnpm run lint:js
  • pnpm run lint:js -- --fix

Staging and Deployment

See the DEPLOYING.md guide for instructions.

Building

Cross-browser testing provided by:

BrowserStack