A barebones Ember.js app, which can easily be deployed to Heroku using the open source Heroku Ember Buildpack.
This app is deployed as a static app, if you would like to try a one click deploy of a FastBoot app check out this branch.
You will need the following things properly installed on your computer.
- Git
- Node.js (with npm)
- Ember CLI
- Google Chrome
git clone [email protected]:heroku/ember-js-getting-started.git
this repositorycd ember-js-getting-started
yarn
ember serve
- Visit your app at http://localhost:4200.
- Visit your tests at http://localhost:4200/tests.
Make use of the many generators for code, try ember help generate
for more details
ember test
ember test --server
yarn run lint:hbs
yarn run lint:js
yarn run lint:js -- --fix
$ heroku create --buildpack https://codon-buildpacks.s3.amazonaws.com/buildpacks/heroku/emberjs.tgz
$ git push heroku master
$ heroku open
or