Awesome
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.
- Git
- Node.js (with npm)
- Ember CLI
- Google Chrome
Installation
git clone <repository-url>
this repositorycd ember-blog
npm 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
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.