This is the app that serves https://deprecations.emberjs.com/
The content folder contains all the deprecations that are listed by the website. To add a new deprecation, add it to the appropriate folder by creating a new file. The content of the file needs to follow a specific format for the app to work. You can see this sample for reference.
You will need the following things properly installed on your computer.
- Git
- Node.js (with npm)
- Ember CLI
- Google Chrome
git clone <repository-url>
this repositorycd deprecation-app
npm install
/yarn
ember serve
- Visit your app at http://localhost:4200/ember/v2.x.
- Visit your tests at http://localhost:4200/tests.
Do you only see a blank page with a header and footer? Or maybe a 404? Make sure to visit http://localhost:4200/ember/v2.x to view the app with data loaded in.
Make use of the many generators for code, try ember help generate
for more details
ember test
ember test --server
ember build
(development)ember build --environment production
(production)
This app is deployed via CI/CD on merges to the master branch.