Create automatic database-backed JSONAPI endpoints from simple JSON schemas.
npm install ember-jsonapi
```
ember init(switch to pods if you so choose)
ember install ember-jsonapi
ember g api
ember g login
npm run migrate
npm run seed
npm start
``
ember g route index
ember g controller index(hyperterm only)
vi app/controllers/index.js
add:
session: Ember.inject.service()
vi app/template/index.hbs
Logged in as {{this.session.user.email}}
vi app/styles/app.css
add:
body { background-color: oldlace; }
`add a new model & schema
ember g schema post name:string user:belongsTo:user
ember g migration posts
npm run migrateopen http://localhost:4200/api/posts/, see that posts are automatically there
[] integration tests for models/schemas & api endpoints