Project developed and set up to show off basic features of an Ember project. Could be useful for presentations. It demonstrates:
- Mirage server and faker
- Acceptance testing with Yadda
- SASS structuring
- Syfl Ember blueprints
You will need the following things properly installed on your computer.
git clone [email protected]:lamabiker/test-ember-project.git
this repositorycd test-ember-project
npm install
ember install ember-cli-mirage
ember install ember-cli-yadda
- Addons to the
package.json
- SASS added to
ember-cli-build.js
- Created a
templates/application.hbs
file - Added the
.app-body
class inindex.html
ember server
- Visit your app at http://localhost:4200.
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)