fgh151-ember-crud

0.0.1 • Public • Published

fgh151-ember-crud

Installation

  • cd /projet/folder
  • npm install fgh151-ember-crud

Running

  • ember g fgh152-crud foo
  • in config/enviroment.js add pod prefix, like
module.exports = function(environment) {
  var ENV = {
    modulePrefix: 'project',
    podModulePrefix: 'project/pods',
    ...
  }
}
  • Add rules to app/router.js:
  ...
  this.route('foos', function() {
    this.route('show', { path: ':foo_id' });
    this.route('new');
    this.route('edit', { path: ':foo_id/edit' });
  });
  ...

Readme

Keywords

Package Sidebar

Install

npm i fgh151-ember-crud

Weekly Downloads

1

Version

0.0.1

License

MIT

Last publish

Collaborators

  • fgh151