Skip to content

ember-learn/ember-blog

Repository files navigation

This project uses GitHub Actions for continuous integration. Chat with Ember community on Discord

Ember Blog

This repository contains the blog content for the Ember.js public website.

Other parts of the public website are separate apps:

Contributing

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

The best way to get started is to find 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 respository.

Contributing troubleshooting

We are using Alex for insensitive language checking and markdownlint. If your CI branch build is failing from these linters, please see Contributing Guide for more info.

Prerequisites

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

Installation

  • git clone <repository-url> this repository
  • cd ember-blog
  • npm install

Running / Development

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

  • npm run lint
  • npm run lint:fix

Building

  • ember build (development)
  • ember build --environment production (production)

Deploying

Specify what it takes to deploy your app.

Further Reading / Useful Links